registerForPushNotifications method

  1. @override
Future<void> registerForPushNotifications({
  1. required String email,
})
override

Implementation

@override
Future<void> registerForPushNotifications({required String email}) async {
  await methodChannel.invokeMethod('registerForPushNotifications', {
    'email': email,
  });
}