sendFirebasePushNotification method

  1. @override
Future<void> sendFirebasePushNotification(
  1. Map<String, dynamic> message
)
override

Implementation

@override
Future<void> sendFirebasePushNotification(
    Map<String, dynamic> message) async {
  await methodChannel.invokeMethod<String>(
      'sendFirebasePushNotification', {'data': message});
  return;
}