FeedbackRepoProvider constructor
const
FeedbackRepoProvider({
- Key? key,
- required Widget child,
- required FeedbackRepository feedbackRepository,
Creates a FeedbackRepoProvider.
child
- The widget subtree that will have access to the repository
feedbackRepository
- The repository instance to provide
Implementation
const FeedbackRepoProvider({
super.key,
required super.child,
required this.feedbackRepository,
});