ConstructOption constructor

const ConstructOption({
  1. required String name,
  2. required String help,
  3. bool hide = false,
  4. String? abbr,
  5. String? valueHelp,
  6. String? defaultsTo,
  7. Iterable<String>? allowed,
  8. Map<String, String>? allowedHelp,
})

Implementation

const ConstructOption({
  required super.name,
  required super.help,
  super.hide,
  this.abbr,
  this.valueHelp,
  this.defaultsTo,
  this.allowed,
  this.allowedHelp,
});