mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
20 lines
433 B
Dart
20 lines
433 B
Dart
abstract class AuthState {}
|
|
|
|
class AuthenticationStateInitial extends AuthState {}
|
|
|
|
class AuthenticationInProgress extends AuthState {}
|
|
|
|
class AuthenticatedSuccessfully extends AuthState {}
|
|
|
|
class AuthenticationFailure extends AuthState {
|
|
AuthenticationFailure({required this.error});
|
|
|
|
final String error;
|
|
}
|
|
|
|
class AuthenticationBanned extends AuthState {
|
|
AuthenticationBanned({required this.error});
|
|
|
|
final String error;
|
|
}
|
|
|