FeatureFilter.fromJson constructor

FeatureFilter.fromJson(
  1. Map json_
)

Implementation

FeatureFilter.fromJson(core.Map json_)
    : this(
        includedFeatures: json_.containsKey('includedFeatures')
            ? (json_['includedFeatures'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );