open static method

Future<NotificareNotification> open(
  1. NotificareInboxItem item
)

Implementation

static Future<NotificareNotification> open(NotificareInboxItem item) async {
  final json =
      await _channel.invokeMapMethod<String, dynamic>('open', item.toJson());
  return NotificareNotification.fromJson(json!);
}