isRegisteredForRemoteNotifications method
Implementation
@override
Future<bool> isRegisteredForRemoteNotifications() async {
bool? isRegisteredForRemoteNotifications =
await methodChannel.invokeMethod<bool>('isRegisteredForRemoteNotifications');
return isRegisteredForRemoteNotifications??false;
}