ConstructMultiOption constructor

const ConstructMultiOption({
  1. required String name,
  2. required String help,
  3. bool hide = false,
  4. String? abbr,
  5. String? valueHelp,
})

Implementation

const ConstructMultiOption({
  required super.name,
  required super.help,
  super.hide,
  this.abbr,
  this.valueHelp,
});