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