Task constructor

Task({
  1. required String name,
  2. required String executable,
  3. required List<String> args,
  4. required String src,
  5. required bool warnings,
})

Implementation

Task({
  required this.name,
  required this.executable,
  required this.args,
  required this.src,
  required this.warnings,
});