copyWithWrapped method

CommandTaskIdDTO copyWithWrapped({
  1. Wrapped<String?>? id,
})

Implementation

CommandTaskIdDTO copyWithWrapped({Wrapped<String?>? id}) {
  return CommandTaskIdDTO(id: (id != null ? id.value : this.id));
}