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.
|
- part of 'authentication_bloc.dart';
-
- abstract class AuthenticationEvent extends Equatable {
- const AuthenticationEvent();
-
- @override
- List<Object> get props => [];
- }
-
- class AuthenticationStatusChanged extends AuthenticationEvent {
- const AuthenticationStatusChanged(this.status);
-
- final AuthenticationStatus status;
-
- @override
- List<Object> get props => [status];
- }
-
- class AuthenticationLogoutRequested extends AuthenticationEvent {}
|