onNotificationInfoReceived property

Stream<NotificareNotificationReceivedEvent> onNotificationInfoReceived

Implementation

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