isRegisteredForRemoteNotifications method
Implementation
@override
Future<bool> isRegisteredForRemoteNotifications() async {
try {
return await _configChannel.invokeMethod<bool>(
SuperfineSdkChannelMethods.isRegisteredForRemoteNotifications) ??
false;
} catch (e) {
print("Error checking registration for remote notifications: $e");
return false;
}
}