copyWith method

AttachmentLinks copyWith({
  1. String? webui,
  2. String? download,
})

Implementation

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