MatchedValueRange.fromJson constructor

MatchedValueRange.fromJson(
  1. Map json_
)

Implementation

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