AttachmentSelectionOptions constructor

const AttachmentSelectionOptions({
  1. dynamic key,
  2. required dynamic onSelected,
  3. dynamic onLinkSelected,
})

Implementation

const AttachmentSelectionOptions({
  super.key,
  required this.onSelected,
  this.onLinkSelected,
});