JsonValueBoolean constructor

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

Represents a boolean JSON value

Implementation

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