displayNotification method
Implementation
@override
Future<void> displayNotification(Map<String, dynamic> notification) async {
await methodChannel.invokeMethod<void>(
'displayNotification',
<String, Map<String, dynamic>>{'notification': notification},
);
}