update method

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

Implementation

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