BetweenFilter.fromJson constructor

BetweenFilter.fromJson(
  1. 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,
      );