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