receivePushNotification method

  1. @override
Future<bool?> receivePushNotification(
  1. Map<String, dynamic> content
)
override

Implementation

@override
Future<bool?> receivePushNotification(
  Map<String, dynamic> content,
) {
  return methodChannel.invokeMethod('receivePushNotification', {
    'content': content,
  });
}