TKK_E32232340/lib/blocs/authentication_bloc/authentication_event.dart

14 lines
301 B
Dart

part of 'authentication_bloc.dart';
sealed class AuthenticationEvent extends Equatable {
const AuthenticationEvent();
@override
List<Object> get props => [];
}
class AuthenticationUserChanged extends AuthenticationEvent {
final MyUser? user;
const AuthenticationUserChanged(this.user);
}