This commit is contained in:
Felipe
2024-02-20 17:11:43 -05:00
parent 29d18e93e0
commit e00772f58a
21 changed files with 386 additions and 279 deletions
+26
View File
@@ -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});
}