FeedbackComposer constructor

const FeedbackComposer({
  1. Key? key,
  2. FeedbackDraft? initialDraft,
  3. ValueChanged<FeedbackSubmissionResult>? onSubmitSuccess,
  4. Future<FeedbackAttachment?> onPickAttachment()?,
})

Implementation

const FeedbackComposer({
  super.key,
  this.initialDraft,
  this.onSubmitSuccess,
  this.onPickAttachment,
});