StreamPlatformAttachmentPickerBottomSheetBuilder constructor

const StreamPlatformAttachmentPickerBottomSheetBuilder({
  1. Key? key,
  2. List<AttachmentPickerOption>? customOptions,
  3. List<Attachment>? initialAttachments,
  4. Widget? child,
  5. StreamAttachmentPickerController? controller,
  6. required Widget builder(
    1. BuildContext context,
    2. StreamAttachmentPickerController controller,
    3. Widget? child
    ),
})

Creates a new instance of the widget.

Implementation

const StreamPlatformAttachmentPickerBottomSheetBuilder({
  super.key,
  this.customOptions,
  this.initialAttachments,
  this.child,
  this.controller,
  required this.builder,
});