AttachmentFeatureButton constructor

const AttachmentFeatureButton({
  1. Key? key,
  2. required AttachmentFeature feature,
  3. required AttachmentConfig config,
  4. Widget? child,
  5. ValueChanged<List<AttachmentResult>>? onResult,
  6. ValueChanged<bool>? onProcessingStateChanged,
})

Implementation

const AttachmentFeatureButton({
  super.key,
  required this.feature,
  required this.config,
  this.child,
  this.onResult,
  this.onProcessingStateChanged,
});