handleForegroundNotifications method
Implementation
@override
Future<void> handleForegroundNotifications(
Map<String, dynamic> notificationData) async {
try {
await methodChannel.invokeMethod(
'handleForegroundNotifications', notificationData);
} catch (e) {
e.toString();
}
}