update method

Future<ResponseItemDTO> update({
  1. String? id,
  2. TaxBody? tax,
})

Implementation

Future<ResponseItemDTO> update({String? id, TaxBody? tax}) async {
  return await _repository!.update(
    id: id,
    tax: tax,
  );
}