PropertyValue.fromJson constructor
PropertyValue.fromJson(
- Map json_
Implementation
PropertyValue.fromJson(core.Map json_)
: this(
property: json_.containsKey('property')
? json_['property'] as core.String
: null,
value:
json_.containsKey('value') ? json_['value'] as core.String : null,
);