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