Files
prosappco/lib/blocs/authentication_bloc/authentication_event.dart
T
2024-02-16 11:14:01 -05:00

18 lines
383 B
Dart

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