FeedbackWrapper constructor
const
FeedbackWrapper({
- Key? key,
- required Widget child,
- required FeedbackWrapperConfig feedbackConfig,
- void onRepositoryCreated(
- 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,
});