ExtraItems constructor

const ExtraItems({
  1. Key? key,
  2. void handleImageSelection()?,
  3. void handleFileSelection()?,
  4. void handlePickerSelection()?,
  5. void handleUploadVideo()?,
  6. void handleCaptureVideo()?,
})

Implementation

const ExtraItems({
  Key? key,
  this.handleImageSelection,
  this.handleFileSelection,
  this.handlePickerSelection,
  this.handleUploadVideo,
  this.handleCaptureVideo,
}) : super(key: key);