processPushNotification static method

Future<void> processPushNotification(
  1. dynamic data
)

Method to process Notification using CleverTap to avoid duplicates using Push Amplification

Implementation

static Future<void> processPushNotification(dynamic data) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('processPushNotification', {'extras': data});
}