OptionValueBoolean constructor

const OptionValueBoolean({
  1. required bool value,
  2. dynamic extra,
  3. int? clientId,
})

Represents a boolean option

Implementation

const OptionValueBoolean({
  required this.value,
  this.extra,
  this.clientId,
});