getDepotByInternalArea method
Get the depots by internal areas from the server
Implementation
Future<List<Depot>> getDepotByInternalArea(int internalAreaId) =>
_apiClient.getDepotByInternalArea(internalAreaId).catchError((error) {
_crashlytics?.recordError(error, StackTrace.current);
throw error;
});