create method
Implementation
Future<ResponseItemDTO> create({CategoryBody? category}) async {
return await _repository!.create(
category: category,
);
}
Future<ResponseItemDTO> create({CategoryBody? category}) async {
return await _repository!.create(
category: category,
);
}