FeedbackWidgetWrapper constructor
const
FeedbackWidgetWrapper({
- Key? key,
- required Widget child,
- required FeedbackWrapperConfig feedbackConfig,
- String getUserEmail(
- BuildContext context
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 FeedbackWidgetWrapper({
super.key,
required this.child,
required this.feedbackConfig,
this.getUserEmail,
});