processPushNotification static method

Future<void> processPushNotification(
  1. String payload
)

Processes the push notification and performs the necessary actions.

@param payload The push notification JSON payload.

Implementation

static Future<void> processPushNotification(String payload) {
  return DevRevSDKPlatform.instance.processPushNotification(payload);
}