unregisterForNotification method

Future<void> unregisterForNotification(
  1. String notificationType
)

Unregisters from notifications of the specified notificationType.

Implementation

Future<void> unregisterForNotification(String notificationType) {
  return _platform.unregisterForNotification(notificationType);
}