7 lines
139 B
Dart
Raw Normal View History

2025-10-24 02:02:00 +07:00
part of 'auth_bloc.dart';
@freezed
class AuthEvent with _$AuthEvent {
const factory AuthEvent.fetchCurrentUser() = _FetchCurrentUser;
}