removeUserFCMToken method
Implementation
Future<void> removeUserFCMToken(String userId, String token) async {
try {
await _userMessagingDataService.removeUserFCMToken(userId, token);
} catch (e) {
if (e is RdevException) {
throw UserMessagingServiceException(
code: e.code, message: e.message, stackTrace: e.stackTrace);
}
throw UserMessagingServiceException();
}
}