ListPopulationClause.fromJson constructor

ListPopulationClause.fromJson(
  1. Map json_
)

Implementation

ListPopulationClause.fromJson(core.Map json_)
    : this(
        terms: json_.containsKey('terms')
            ? (json_['terms'] as core.List)
                .map((value) => ListPopulationTerm.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );