create method

Future<ResponseItemDTO> create({
  1. CatalogBody? catalog,
})

Implementation

Future<ResponseItemDTO> create({CatalogBody? catalog}) async {
  return await _repository!.create(catalog: catalog);
}