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.

20 lines
444B

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