jsonValueBoolean property

JsonValueBoolean? jsonValueBoolean

Represents a boolean JSON value

Implementation

JsonValueBoolean? get jsonValueBoolean {
  if (this is JsonValueBoolean) {
    return this as JsonValueBoolean;
  }
  return null;
}