DartdocFileWriter constructor

DartdocFileWriter(
  1. String _outputDir,
  2. ResourceProvider resourceProvider, {
  3. int maxFileCount = 0,
  4. int maxTotalSize = 0,
})

Implementation

DartdocFileWriter(
  this._outputDir,
  this.resourceProvider, {
  int maxFileCount = 0,
  int maxTotalSize = 0,
})  : _maxFileCount = maxFileCount,
      _maxTotalSize = maxTotalSize;