getAppLaunchNotification static method

Future<CleverTapAppLaunchNotification> getAppLaunchNotification()

Implementation

static Future<CleverTapAppLaunchNotification>
    getAppLaunchNotification() async {
  Map<dynamic, dynamic> result = await _dartToNativeMethodChannel
      .invokeMethod('getAppLaunchNotification');
  return CleverTapAppLaunchNotification.fromMap(result);
}