part of 'notification_bloc.dart'; abstract class NotificationEvent extends Equatable { const NotificationEvent(); @override List get props => []; } class NotificationStatusChanged extends NotificationEvent { final AuthorizationStatus status; const NotificationStatusChanged(this.status); }