copyWith method

CommandTaskIdDTO copyWith({
  1. String? id,
})

Implementation

CommandTaskIdDTO copyWith({String? id}) {
  return CommandTaskIdDTO(id: id ?? this.id);
}