auth state

This commit is contained in:
efrilm
2025-10-24 02:02:00 +07:00
parent ca5d2a58e7
commit 59062f9af1
7 changed files with 930 additions and 9 deletions
+6
View File
@@ -0,0 +1,6 @@
part of 'auth_bloc.dart';
@freezed
class AuthEvent with _$AuthEvent {
const factory AuthEvent.fetchCurrentUser() = _FetchCurrentUser;
}