FeedbackScreen constructor

const FeedbackScreen({
  1. Key? key,
  2. required String screenShotPath,
  3. required String feedbackFooterText,
  4. required String reportType,
  5. String? fromEmail = '',
  6. required VoidCallback onFeedbackSubmissionStarted,
  7. required dynamic onFeedbackSubmitted(
    1. bool result
    ),
  8. required bool isEmailEditable,
  9. required String userId,
})

FeedbackScreen as StatefulWidget for creating thr feedback screen UI.

Implementation

const FeedbackScreen({
  Key? key,
  required this.screenShotPath,
  required this.feedbackFooterText,
  required this.reportType,
  this.fromEmail = '',
  required this.onFeedbackSubmissionStarted,
  required this.onFeedbackSubmitted,
  required this.isEmailEditable,
  required this.userId,
}) : super(key: key);