AttachmentsSheetView constructor

const AttachmentsSheetView({
  1. Key? key,
  2. required Rx<AvailableFeatures> availableFeatures,
  3. required RxList<AttachmentIcon> attachments,
  4. required dynamic onDocument(),
  5. required dynamic onCamera(),
  6. required dynamic onGallery(),
  7. required dynamic onAudio(),
  8. required dynamic onContact(),
  9. required dynamic onLocation(),
})

Implementation

const AttachmentsSheetView(
    {super.key,
    required this.availableFeatures,
    required this.attachments,
    required this.onDocument,
    required this.onCamera,
    required this.onGallery,
    required this.onAudio,
    required this.onContact,
    required this.onLocation});