mirror of
https://github.com/supanadit/geo-smart-app.git
synced 2024-11-10 10:02:20 +00:00
17 lines
408 B
Dart
17 lines
408 B
Dart
import 'package:equatable/equatable.dart';
|
|
|
|
class AuthenticationState extends Equatable {
|
|
const AuthenticationState();
|
|
|
|
@override
|
|
List<Object> get props => [];
|
|
}
|
|
|
|
class AuthenticationInitial extends AuthenticationState {}
|
|
|
|
class AuthenticationProgress extends AuthenticationState {}
|
|
|
|
class AuthenticationSuccess extends AuthenticationState {}
|
|
|
|
class AuthenticationFailed extends AuthenticationState {}
|