Target constructor

Target({
  1. required String name,
  2. required List<String> where,
  3. bool needsHtml = true,
  4. Cleaner? cleaner,
  5. bool minifyHtmlHead = false,
  6. bool minifyHtmlScripts = false,
  7. bool minifyHtmlStyles = false,
  8. bool minifyHtmlForms = false,
})

Implementation

Target({
  required this.name,
  required this.where,
  this.needsHtml = true,
  this.cleaner,
  this.minifyHtmlHead = false,
  this.minifyHtmlScripts = false,
  this.minifyHtmlStyles = false,
  this.minifyHtmlForms = false,
});