7 lines
139 B
Dart
Raw Permalink Normal View History

2025-08-16 17:48:49 +07:00
part of 'auth_bloc.dart';
@freezed
class AuthEvent with _$AuthEvent {
const factory AuthEvent.fetchCurrentUser() = _FetchCurrentUser;
}