first commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
part of 'login_bloc.dart';
|
||||
|
||||
@freezed
|
||||
class LoginEvent with _$LoginEvent {
|
||||
const factory LoginEvent.started() = _Started;
|
||||
const factory LoginEvent.login({
|
||||
required String email,
|
||||
required String password,
|
||||
}) = _Login;
|
||||
}
|
||||
Reference in New Issue
Block a user