MessageInputMediaAttachments constructor

const MessageInputMediaAttachments({
  1. Key? key,
  2. required List<Attachment> attachments,
  3. AttachmentItemBuilder? attachmentBuilder,
  4. ValueSetter<Attachment>? onRemovePressed,
})

Creates a new MediaAttachments widget.

Implementation

const MessageInputMediaAttachments({
  super.key,
  required this.attachments,
  this.attachmentBuilder,
  this.onRemovePressed,
});