fromJson static method
Inherited by: JsonValueArray JsonValueBoolean JsonValueNull JsonValueNumber JsonValueObject JsonValueString
Implementation
static JsonValueBoolean? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return JsonValueBoolean(value: (json['value'] as bool?) ?? false);
}