withAttachments method
FeedAddActivityRequest
withAttachments({
- List<
Attachment> ? attachments, - List<
StreamAttachment> ? attachmentUploads,
Creates a copy of this request with updated attachments and uploads.
Implementation
@override
FeedAddActivityRequest withAttachments({
List<Attachment>? attachments,
List<StreamAttachment>? attachmentUploads,
}) {
return copyWith(
attachments: attachments,
attachmentUploads: attachmentUploads,
);
}