CookieSettingsTexts constructor

const CookieSettingsTexts({
  1. String dialogTitle = 'Cookie Settings',
  2. String essentialTitle = 'Essential Cookies',
  3. String essentialDescription = 'These cookies are necessary for the website to function and cannot be switched off.',
  4. String analyticsTitle = 'Analytics Cookies',
  5. String analyticsDescription = 'These cookies help us understand how visitors interact with our website.',
  6. String marketingTitle = 'Marketing Cookies',
  7. String marketingDescription = 'These cookies are used to track visitors across websites.',
  8. String cancelButton = 'Cancel',
  9. String saveButton = 'Save',
})

Implementation

const CookieSettingsTexts({
  this.dialogTitle = 'Cookie Settings',
  this.essentialTitle = 'Essential Cookies',
  this.essentialDescription =
      'These cookies are necessary for the website to function and cannot be switched off.',
  this.analyticsTitle = 'Analytics Cookies',
  this.analyticsDescription =
      'These cookies help us understand how visitors interact with our website.',
  this.marketingTitle = 'Marketing Cookies',
  this.marketingDescription =
      'These cookies are used to track visitors across websites.',
  this.cancelButton = 'Cancel',
  this.saveButton = 'Save',
});