pluggableExecute method
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;
}