FeedbackBottomSheet constructor

const FeedbackBottomSheet({
  1. Key? key,
  2. required OnFeedbackCallback feedbackCallback,
  3. EmailConfig? emailConfig,
  4. GitHubConfig? gitHubConfig,
  5. required String title,
  6. required String subTitle,
})

Bottom Sheet Content Widget

Implementation

const FeedbackBottomSheet({
  Key? key,
  required this.feedbackCallback,
  this.emailConfig,
  this.gitHubConfig,
  required this.title,
  required this.subTitle,
}) : super(key: key);