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