7 lines
139 B
Dart
Raw Normal View History

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