UpdateServiceNotification constructor
const
UpdateServiceNotification({
- required String type,
- required MessageContent content,
- dynamic extra,
- int? clientId,
A service notification from the server was received. Upon receiving this the application must show a popup with the content of the notification
Implementation
const UpdateServiceNotification({
required this.type,
required this.content,
this.extra,
this.clientId,
});