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,
      );