ConstructBoolFlag constructor

const ConstructBoolFlag({
  1. required String name,
  2. required String help,
  3. bool hide = false,
})

Implementation

const ConstructBoolFlag({
  required super.name,
  required super.help,
  super.hide,
});