handleNotificationIntent static method

Future<void> handleNotificationIntent(
  1. Map<String, dynamic> data
)

Manually tracks notification clicks/intents.

Reconstructs the intent payload on the native Android side to call BooleanMathsSDK.handleNotificationIntent. Pass the raw data map payload.

Implementation

static Future<void> handleNotificationIntent(Map<String, dynamic> data) {
  return BooleanMathsFlutterSdkPlatform.instance.handleNotificationIntent(data);
}