copyWith method

TemporaryAttachments copyWith({
  1. List<TemporaryAttachment>? temporaryAttachments,
})

Implementation

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