update method

Future<ResponseItemDTO> update({
  1. String? id,
  2. ProductCatalogBody? price,
})

Implementation

Future<ResponseItemDTO> update(
    {String? id, ProductCatalogBody? price}) async {
  return await _repository!.update(
    id: id,
    price: price,
  );
}