updateServiceNotification property
A service notification from the server was received. Upon receiving this the application must show a popup with the content of the notification
Implementation
UpdateServiceNotification? get updateServiceNotification {
if (this is UpdateServiceNotification) {
return this as UpdateServiceNotification;
}
return null;
}