copyWith method
Implementation
TemporaryAttachments copyWith(
{List<TemporaryAttachment>? temporaryAttachments}) {
return TemporaryAttachments(
temporaryAttachments: temporaryAttachments ?? this.temporaryAttachments,
);
}
TemporaryAttachments copyWith(
{List<TemporaryAttachment>? temporaryAttachments}) {
return TemporaryAttachments(
temporaryAttachments: temporaryAttachments ?? this.temporaryAttachments,
);
}