onSystemNotificationReceived property

Stream<NotificareSystemNotification> onSystemNotificationReceived

Implementation

static Stream<NotificareSystemNotification> get onSystemNotificationReceived {
  return _getEventStream('system_notification_received').map((result) {
    final Map<dynamic, dynamic> json = result;
    return NotificareSystemNotification.fromJson(json.cast());
  });
}