pushInboxNotificationClickedEventForId static method

Future<void> pushInboxNotificationClickedEventForId(
  1. String messageId
)

Pushes the Notification Clicked event for App Inbox to CleverTap.

Implementation

static Future<void> pushInboxNotificationClickedEventForId(
    String messageId) async {
  return await _dartToNativeMethodChannel.invokeMethod(
      'pushInboxNotificationClickedEventForId', {'messageId': messageId});
}