inAppMarkAsDeleted static method

Future<bool> inAppMarkAsDeleted(
  1. String templateId,
  2. String eventId
)

Implementation

static Future<bool> inAppMarkAsDeleted(
    String templateId, String eventId) async {
  return await _channel
      .invokeMethod(Method.INAPP_MARK_AS_DELETED, [templateId, eventId]);
}