FeedbackNpsWidget constructor

const FeedbackNpsWidget({
  1. Key? key,
  2. void onScoreChanged(
    1. int score
    )?,
  3. int? initialScore,
  4. String question = 'How likely are you to recommend this app to a friend?',
})

Implementation

const FeedbackNpsWidget({
  super.key,
  this.onScoreChanged,
  this.initialScore,
  this.question = 'How likely are you to recommend this app to a friend?',
});