copyWith method
Implementation
AttachmentLinks copyWith({String? webui, String? download}) {
return AttachmentLinks(
webui: webui ?? this.webui,
download: download ?? this.download,
);
}
AttachmentLinks copyWith({String? webui, String? download}) {
return AttachmentLinks(
webui: webui ?? this.webui,
download: download ?? this.download,
);
}