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