removeUserFCMToken method
Implementation
Future<void> removeUserFCMToken(String userId, String fcmToken) async {
try {
await _functions
.httpsCallable('callables-removeFCMToken')
.call({'userId': userId, 'fcmToken': fcmToken});
} catch (err) {
if (err is UserMessagingDataServiceException) {
rethrow;
}
throw UserMessagingDataServiceException(message: err.toString());
}
}