MatchedValueRange.fromJson constructor
MatchedValueRange.fromJson(
- Map json_
Implementation
MatchedValueRange.fromJson(core.Map json_)
: this(
dataFilters: json_.containsKey('dataFilters')
? (json_['dataFilters'] as core.List)
.map((value) => DataFilter.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
valueRange: json_.containsKey('valueRange')
? ValueRange.fromJson(
json_['valueRange'] as core.Map<core.String, core.dynamic>)
: null,
);