ChangelogOverlayConfig constructor

const ChangelogOverlayConfig({
  1. String title = "What's New",
  2. String subtitle = '',
  3. int entryCount = 3,
  4. String primaryButton = 'Continue',
  5. String closeButton = 'Close',
})

Creates a ChangelogOverlayConfig with customizable modal options.

Implementation

const ChangelogOverlayConfig({
  this.title = "What's New",
  this.subtitle = '',
  this.entryCount = 3,
  this.primaryButton = 'Continue',
  this.closeButton = 'Close',
});