BetweenFilter.fromJson constructor
BetweenFilter.fromJson(
- Map json_
Implementation
BetweenFilter.fromJson(core.Map json_)
: this(
fromValue: json_.containsKey('fromValue')
? NumericValue.fromJson(
json_['fromValue'] as core.Map<core.String, core.dynamic>)
: null,
toValue: json_.containsKey('toValue')
? NumericValue.fromJson(
json_['toValue'] as core.Map<core.String, core.dynamic>)
: null,
);