FeedbackWrapper constructor

const FeedbackWrapper({
  1. Key? key,
  2. required Widget child,
  3. required FeedbackWrapperConfig feedbackConfig,
  4. void onRepositoryCreated(
    1. FeedbackRepository remoteConfigRepo
    )?,
})

Creates a new FeedbackWrapper.

child - The main widget to be wrapped feedbackConfig - Configuration for the feedback system onRepositoryCreated - Optional callback when the repository is created

Implementation

const FeedbackWrapper({
  super.key,
  required this.child,
  required this.feedbackConfig,
  this.onRepositoryCreated,
});