ScheduledWhatsNewPage constructor

const ScheduledWhatsNewPage({
  1. Key? key,
  2. required WhatsNewPage details,
  3. Duration? delay,
  4. String? appVersion,
  5. required Widget child,
})

Implementation

const ScheduledWhatsNewPage({
  Key? key,
  required this.details,
  this.delay,
  this.appVersion,
  required this.child,
}) : super(key: key);