pushInboxNotificationViewedEventForId static method

Future<void> pushInboxNotificationViewedEventForId(
  1. String messageId
)

Pushes the Notification Viewed event for App Inbox to CleverTap.

Implementation

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