storePushNotification method

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

Implementation

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