7 lines
139 B
Dart
7 lines
139 B
Dart
|
|
part of 'auth_bloc.dart';
|
||
|
|
|
||
|
|
@freezed
|
||
|
|
class AuthEvent with _$AuthEvent {
|
||
|
|
const factory AuthEvent.fetchCurrentUser() = _FetchCurrentUser;
|
||
|
|
}
|