FluoRatingScreen constructor

const FluoRatingScreen({
  1. Key? key,
  2. required String title,
  3. required String appStoreId,
  4. required AssetImage userPhoto,
  5. required String userName,
  6. required String userReview,
  7. required VoidCallback onContinue,
  8. bool showRating = true,
  9. bool showRatingStars = true,
  10. String ratingTitle = '4.9',
  11. String ratingSubtitle = '100K+ App Ratings',
  12. FluoRatingScreenStyle style = const FluoRatingScreenStyle(),
  13. String? continueButtonTitle,
})

Implementation

const FluoRatingScreen({
  super.key,
  required this.title,
  required this.appStoreId,
  required this.userPhoto,
  required this.userName,
  required this.userReview,
  required this.onContinue,
  this.showRating = true,
  this.showRatingStars = true,
  this.ratingTitle = '4.9',
  this.ratingSubtitle = '100K+ App Ratings',
  this.style = const FluoRatingScreenStyle(),
  this.continueButtonTitle,
});