notificaciones al pedir servicio y al enviar mensaje de chat

This commit is contained in:
Felipe
2024-04-25 11:15:33 -05:00
parent 76be1f1f1a
commit e1049f7281
15 changed files with 411 additions and 304 deletions
@@ -0,0 +1,14 @@
part of 'notification_bloc.dart';
abstract class NotificationEvent extends Equatable {
const NotificationEvent();
@override
List<Object> get props => [];
}
class NotificationStatusChanged extends NotificationEvent {
final AuthorizationStatus status;
const NotificationStatusChanged(this.status);
}