unregisterForNotification method

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

Unregisters from notifications of the specified type.

Implementation

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