StaticConf constructor

const StaticConf({
  1. String fileSystemPath = 'app',
  2. String defaultDocument = 'index.html',
  3. bool onNotFoundPathUseDefaultDocument = true,
  4. bool compress = true,
})

Implementation

const StaticConf({
  this.fileSystemPath = 'app',
  this.defaultDocument = 'index.html',
  this.onNotFoundPathUseDefaultDocument = true,
  this.compress = true,
});