multiple method
Implementation
Future<ResponseItemDTO> multiple(
{String? id, ProductCatalogMultipleBody? productCatalogs}) async {
return await _repository!.multiple(
id: id,
productCatalogs: productCatalogs,
);
}
Future<ResponseItemDTO> multiple(
{String? id, ProductCatalogMultipleBody? productCatalogs}) async {
return await _repository!.multiple(
id: id,
productCatalogs: productCatalogs,
);
}