UriOptions constructor

const UriOptions({
  1. String? defaultScheme,
  2. bool coerceBareDomainsToDefaultScheme = false,
  3. bool allowRelative = true,
})

Creates a new UriOptions.

Implementation

const UriOptions({
  this.defaultScheme,
  this.coerceBareDomainsToDefaultScheme = false,
  this.allowRelative = true,
});