copyWith method
Implementation
AttachmentArchiveItemReadable copyWith(
{int? index,
String? label,
String? mediaType,
String? path,
String? size}) {
return AttachmentArchiveItemReadable(
index: index ?? this.index,
label: label ?? this.label,
mediaType: mediaType ?? this.mediaType,
path: path ?? this.path,
size: size ?? this.size,
);
}