pluggableExecute method
Future<void>
pluggableExecute(
- String notificationChannelId,
- String notificationChannelName,
- String notificationActivity,
- Map<
String, String> notificationData, - int notificationIcon,
override
Implementation
@override
Future<void> pluggableExecute(String notificationChannelId, String notificationChannelName, String notificationActivity, Map<String, String> notificationData, int notificationIcon) async {
await methodChannel.invokeMethod<String>(
'pluggableExecute',
{
"notificationChannelId": notificationChannelId,
"notificationChannelName": notificationChannelName,
"notificationActivity": notificationActivity,
"notificationData": notificationData,
"notificationIcon": notificationIcon
}
);
}