unregisterForRemoteNotifications method
Implementation
@override
Future<void> unregisterForRemoteNotifications() async {
try {
await _permissionsChannel.invokeMethod(
SuperfineSdkChannelMethods.unregisterForRemoteNotifications);
} catch (e) {
print("Error unregistering for remote notifications: $e");
}
}