registerForPushNotifications static method

Future<void> registerForPushNotifications(
  1. String? title,
  2. String? message
)

Implementation

static Future<void> registerForPushNotifications(String? title, String? message) async {
  await methodChannel.invokeMethod('registerForPush', <String, dynamic>{
    'title': title,
    'message': message,
  });
}