SeoDefaults constructor

const SeoDefaults({
  1. String titleSuffix = ' | SFWF',
  2. String defaultDescription = 'Built with Smart Flutter Web Framework',
  3. String defaultImage = '/default-og.png',
  4. String twitterHandle = '@sfwf',
})

Creates a new SeoDefaults with the given values.

Implementation

const SeoDefaults({
  this.titleSuffix = ' | SFWF',
  this.defaultDescription =
      'Built with Smart Flutter Web Framework',
  this.defaultImage = '/default-og.png',
  this.twitterHandle = '@sfwf',
});