registerForNotification method

  1. @override
Future<void> registerForNotification(
  1. String notificationType
)
override

Registers for notifications of the specified type.

Implementation

@override
Future<void> registerForNotification(String notificationType) {
  return methodChannel.invokeMethod<void>(
    'registerForNotification',
    <String, dynamic>{'notificationType': notificationType},
  );
}