ArgMultiOptionModel constructor

ArgMultiOptionModel({
  1. String? abbr,
  2. String? help,
  3. String? valueHelp,
  4. Iterable<String>? allowed,
  5. Map<String, String>? allowedHelp,
  6. Iterable<String>? defaultsTo,
  7. void callback(
    1. List<String>
    )?,
  8. bool splitCommas = true,
  9. bool hide = false,
  10. List<String> aliases = const [],
  11. dynamic question()?,
  12. bool? mustRequired = false,
})

Implementation

ArgMultiOptionModel({
  this.abbr,
  this.help,
  this.valueHelp,
  this.allowed,
  this.allowedHelp,
  this.defaultsTo,
  this.callback,
  this.splitCommas = true,
  this.hide = false,
  this.aliases = const [],
  this.question,
  this.mustRequired = false,
});