RouteContentSpec constructor

RouteContentSpec({
  1. String subpath = '',
  2. String? notFound,
  3. List<RouteCorsRule> cors = const [],
  4. bool index = false,
  5. bool iap = false,
  6. String compression = 'brotli',
})

Implementation

RouteContentSpec({
  this.subpath = '',
  this.notFound,
  this.cors = const [],
  this.index = false,
  this.iap = false,
  this.compression = 'brotli',
});