displayNotification method

  1. @override
Future<void> displayNotification(
  1. Map<String, dynamic> notification
)
override

Implementation

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