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