pluggableExecute method

  1. @override
Future<String> pluggableExecute(
  1. String notificationChannelId,
  2. String notificationChannelName,
  3. Map<String, String> notificationData
)
override

Implementation

@override
Future<String> pluggableExecute(String notificationChannelId, String notificationChannelName, Map<String, String> notificationData) async {
	final String uuid = await methodChannel.invokeMethod<String>(
		'pluggableExecute',
		{
			"notificationChannelId": notificationChannelId,
			"notificationChannelName": notificationChannelName,
			"notificationData": notificationData
		}
	) ?? "-98";
	return uuid;
}