ArgFlagModel constructor

ArgFlagModel({
  1. String? abbr,
  2. String? help,
  3. bool? defaultsTo = false,
  4. bool negatable = true,
  5. void callback(
    1. bool
    )?,
  6. bool hide = false,
  7. List<String> aliases = const [],
  8. dynamic question()?,
  9. bool? mustRequired = false,
})

Implementation

ArgFlagModel({
  this.abbr,
  this.help,
  this.defaultsTo = false,
  this.negatable = true,
  this.callback,
  this.hide = false,
  this.aliases = const [],
  this.question,
  this.mustRequired = false,
});