ServingConfig constructor

ServingConfig({
  1. String? appAssociation,
  2. bool? cleanUrls,
  3. List<Header>? headers,
  4. I18nConfig? i18n,
  5. List<Redirect>? redirects,
  6. List<Rewrite>? rewrites,
  7. String? trailingSlashBehavior,
})

Implementation

ServingConfig({
  this.appAssociation,
  this.cleanUrls,
  this.headers,
  this.i18n,
  this.redirects,
  this.rewrites,
  this.trailingSlashBehavior,
});