StaticConf constructor

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

Implementation

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