label
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
part of 'auth_bloc.dart';
|
||||
|
||||
abstract class AuthState extends Equatable {
|
||||
const AuthState();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class AuthStateInitial extends AuthState {}
|
||||
|
||||
class AuthStateProcess extends AuthState {}
|
||||
|
||||
class AuthStateVerifyOAuth extends AuthState {
|
||||
final bool isWrongCode;
|
||||
|
||||
const AuthStateVerifyOAuth(this.isWrongCode);
|
||||
}
|
||||
|
||||
class AuthStateSuccess extends AuthState {}
|
||||
|
||||
class AuthStateFailure extends AuthState {
|
||||
final String? message;
|
||||
|
||||
const AuthStateFailure({this.message});
|
||||
}
|
||||
Reference in New Issue
Block a user