StreamMobileAttachmentPickerBottomSheet constructor

const StreamMobileAttachmentPickerBottomSheet({
  1. Key? key,
  2. required Set<AttachmentPickerOption> options,
  3. required StreamAttachmentPickerController controller,
  4. AttachmentPickerOption? initialOption,
  5. ValueSetter<List<Attachment>>? onSendAttachments,
})

Creates a new instance of StreamMobileAttachmentPickerBottomSheet.

Implementation

const StreamMobileAttachmentPickerBottomSheet({
  super.key,
  required this.options,
  required this.controller,
  this.initialOption,
  this.onSendAttachments,
});