LibrarySettings constructor

const LibrarySettings({
  1. required String dirPath,
  2. String? fileName,
  3. bool disclaimer = true,
  4. String comments = '',
  5. String docs = '',
  6. String? name,
  7. List<ExportSettings> exports = const <ExportSettings>[],
  8. List<Glob> include = const <Glob>[],
  9. List<Glob> exclude = const <Glob>[],
})

Implementation

const LibrarySettings({
  required this.dirPath,
  this.fileName,
  this.disclaimer = true,
  this.comments = '',
  this.docs = '',
  this.name,
  this.exports = const <ExportSettings>[],
  this.include = const <Glob>[],
  this.exclude = const <Glob>[],
});