WhatsNew constructor

WhatsNew({
  1. required List<String> whatsNewContent,
  2. required String version,
  3. required String buildNumber,
  4. bool rateButton = true,
  5. String rateText = "",
  6. bool dismissButton = true,
  7. String dismissText = "",
  8. void onDismissed()?,
})

Implementation

WhatsNew({
  required this.whatsNewContent,
  required this.version,
  required this.buildNumber,
  this.rateButton = true,
  this.rateText = "",
  this.dismissButton = true,
  this.dismissText = "",
  this.onDismissed,
});