FeedbackRepoProvider constructor

const FeedbackRepoProvider({
  1. Key? key,
  2. required Widget child,
  3. 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,
});