getScannedQrCodesWithUser method
Get all the list of ScannedQrCode from the User.
Implementation
Future<List<ScannedQrCode>> getScannedQrCodesWithUser(String userId) =>
_apiClient.getScannedQrCodesWithUser(userId).catchError((error) {
_crashlytics?.recordError(error, StackTrace.current);
throw error;
});