BooleanFlag constructor

const BooleanFlag(
  1. String name, {
  2. String? short,
  3. String? description,
  4. bool hidden = false,
  5. bool defaultValue = false,
  6. bool negatable = false,
})

Implementation

const new(
  super.name, {
  super.short,
  super.description,
  super.hidden,
  this.defaultValue = false,
  this.negatable = false,
});