RateMyAppDialog constructor

const RateMyAppDialog(
  1. RateMyApp rateMyApp, {
  2. Key? key,
  3. required String title,
  4. required String message,
  5. required DialogContentBuilder contentBuilder,
  6. DialogActionsBuilder? actionsBuilder,
  7. required String rateButton,
  8. required String noButton,
  9. required String laterButton,
  10. RateMyAppDialogButtonClickListener? listener,
  11. required DialogStyle dialogStyle,
})

Creates a new Rate my app dialog.

Implementation

const RateMyAppDialog(
  this.rateMyApp, {
  super.key,
  required this.title,
  required this.message,
  required this.contentBuilder,
  this.actionsBuilder,
  required this.rateButton,
  required this.noButton,
  required this.laterButton,
  this.listener,
  required this.dialogStyle,
});