You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
414B

  1. part of 'authentication_bloc.dart';
  2. abstract class AuthenticationEvent {
  3. const AuthenticationEvent();
  4. List<Object> get props => [];
  5. }
  6. class AuthenticationStatusChanged extends AuthenticationEvent {
  7. const AuthenticationStatusChanged(this.status);
  8. final AuthenticationStatus status;
  9. @override
  10. List<Object> get props => [status];
  11. }
  12. class AuthenticationLogoutRequested extends AuthenticationEvent {}