CliOption constructor

const CliOption({
  1. String? name,
  2. String? abbr,
  3. Object? defaultsTo,
  4. String? help,
  5. String? valueHelp,
  6. List<Object>? allowed,
  7. bool? negatable,
  8. Map<Object, String>? allowedHelp,
  9. bool? hide,
  10. dynamic convert(
    1. String
    )?,
  11. bool provideDefaultToOverride = false,
})

Implementation

const CliOption({
  this.name,
  this.abbr,
  this.defaultsTo,
  this.help,
  this.valueHelp,
  this.allowed,
  this.negatable,
  this.allowedHelp,
  this.hide,
  this.convert,
  this.provideDefaultToOverride = false,
});