geo-smart-app/lib/bloc/authentication/authentication_state.dart

17 lines
408 B
Dart
Raw Permalink Normal View History

2020-07-28 18:11:47 +00:00
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 {}