CliFlagDef constructor

const CliFlagDef({
  1. required String long,
  2. String? short,
  3. required String description,
  4. bool takesValue = false,
  5. String? defaultValue,
  6. bool isHidden = false,
})

Implementation

const CliFlagDef({
  required this.long,
  this.short,
  required this.description,
  this.takesValue = false,
  this.defaultValue,
  this.isHidden = false,
});