pluggableExecute method

  1. @override
Future<void> pluggableExecute(
  1. String notificationChannelId,
  2. String notificationChannelName,
  3. String notificationActivity,
  4. Map<String, String> notificationData,
  5. 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
		}
	);
}