fetchNotificationForInboxItem method

Future<NotificareNotification> fetchNotificationForInboxItem(
  1. NotificareInboxItem inboxItem
)

Implementation

Future<NotificareNotification> fetchNotificationForInboxItem(
    NotificareInboxItem inboxItem) async {
  Map<String, dynamic>? json = await _methodChannel.invokeMapMethod(
      'fetchNotificationForInboxItem', {'inboxItem': inboxItem});
  return NotificareNotification.fromJson(json!);
}