getDepotByInternalArea method

Future<List<Depot>> getDepotByInternalArea(
  1. int internalAreaId
)

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;
    });