Files
prosappco/lib/blocs/authentication_bloc/authentication_event.dart
T
2024-02-16 08:52:37 -05:00

18 lines
381 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 User? user;
}
class AuthenticationLogoutRequested extends AuthenticationEvent {}