getDepotsWithUser method
Implementation
Future<List<Depot>> getDepotsWithUser(String userId) =>
_apiClient.getDepotsWithUser(userId).catchError((error) {
_crashlytics?.recordError(error, StackTrace.current);
throw error;
});
Future<List<Depot>> getDepotsWithUser(String userId) =>
_apiClient.getDepotsWithUser(userId).catchError((error) {
_crashlytics?.recordError(error, StackTrace.current);
throw error;
});