AuthenticationState.dart (396B)
1 import 'package:equatable/equatable.dart'; 2 3 abstract class AuthenticationState extends Equatable { 4 @override 5 List<Object> get props => []; 6 } 7 8 class AuthenticationUninitialized extends AuthenticationState {} 9 10 class AuthenticationAuthenticated extends AuthenticationState {} 11 12 class AuthenticationNeeded extends AuthenticationState {} 13 14 class AuthenticationLoading extends AuthenticationState {}