copyWith method
Implementation
TemporaryAttachment copyWith(
{String? temporaryAttachmentId, String? fileName}) {
return TemporaryAttachment(
temporaryAttachmentId:
temporaryAttachmentId ?? this.temporaryAttachmentId,
fileName: fileName ?? this.fileName,
);
}