unregisterForNotification method
Unregisters from notifications of the specified type.
Implementation
@override
Future<void> unregisterForNotification(String notificationType) {
return methodChannel.invokeMethod<void>(
'unregisterForNotification',
<String, dynamic>{'notificationType': notificationType},
);
}