inventorylocationitemGet method

Future<Response<List<WebApiModulesUtilitiesInventoryLocationItemInventoryLocationItem>>> inventorylocationitemGet({
  1. int? pageno,
  2. int? pagesize,
  3. String? sort,
})

@param pageno @param pagesize @param sort

Implementation

Future<
  chopper.Response<
    List<WebApiModulesUtilitiesInventoryLocationItemInventoryLocationItem>
  >
>
inventorylocationitemGet({int? pageno, int? pagesize, String? sort}) {
  generatedMapping.putIfAbsent(
    WebApiModulesUtilitiesInventoryLocationItemInventoryLocationItem,
    () => WebApiModulesUtilitiesInventoryLocationItemInventoryLocationItem
        .fromJsonFactory,
  );

  return _inventorylocationitemGet(
    pageno: pageno,
    pagesize: pagesize,
    sort: sort,
  );
}