getById method

Future<ResponseItemDTO<CatalogDTO>> getById({
  1. String? id,
})

Implementation

Future<ResponseItemDTO<CatalogDTO>> getById({String? id}) async {
  return await _repository!.getById(id: id);
}