Generator constructor

Generator({
  1. PackageNode? packageGraph,
  2. FormatType formatType = FormatType.directory,
  3. String? folder = 'assets',
  4. bool watch = true,
  5. String? output = 'lib',
  6. Rule? rule,
  7. Class? class1,
  8. RegExp? constIgnore,
  9. bool? constArray = false,
  10. RegExp? folderIgnore,
  11. bool package = false,
  12. bool classPrefix = false,
})

Implementation

Generator({
  this.packageGraph,
  this.formatType = FormatType.directory,
  this.folder = 'assets',
  this.watch = true,
  this.output = 'lib',
  this.rule,
  this.class1,
  this.constIgnore,
  this.constArray = false,
  this.folderIgnore,
  this.package = false,
  this.classPrefix = false,
});