AttachmentsSheetView constructor

const AttachmentsSheetView({
  1. Key? key,
  2. required dynamic onDocument(),
  3. required dynamic onCamera(),
  4. required dynamic onGallery(),
  5. required dynamic onAudio(),
  6. required dynamic onContact(),
  7. required dynamic onLocation(),
})

Implementation

const AttachmentsSheetView({Key? key,
  required this.onDocument,
  required this.onCamera,
  required this.onGallery,
  required this.onAudio,
  required this.onContact,
  required this.onLocation})
    : super(key: key);