copyWith method
Implementation
RequestTypeGroupDTO copyWith({String? id, String? name}) {
return RequestTypeGroupDTO(
id: id ?? this.id,
name: name ?? this.name,
);
}
RequestTypeGroupDTO copyWith({String? id, String? name}) {
return RequestTypeGroupDTO(
id: id ?? this.id,
name: name ?? this.name,
);
}