IntOption constructor

const IntOption(
  1. String name, {
  2. int? min,
  3. int? max,
  4. String? short,
  5. String? description,
  6. bool hidden = false,
})

Implementation

const new(
  super.name, {
  this.min,
  this.max,
  super.short,
  super.description,
  super.hidden,
});