geo-smart-app/lib/bloc/authentication/authentication_state.dart
2020-07-29 01:11:47 +07:00

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 {}