jsonValueBoolean property
Represents a boolean JSON value
Implementation
JsonValueBoolean? get jsonValueBoolean {
if (this is JsonValueBoolean) {
return this as JsonValueBoolean;
}
return null;
}
Represents a boolean JSON value
JsonValueBoolean? get jsonValueBoolean {
if (this is JsonValueBoolean) {
return this as JsonValueBoolean;
}
return null;
}