NumericTargetingDimension.fromJson constructor
NumericTargetingDimension.fromJson(
- Map json_
Implementation
NumericTargetingDimension.fromJson(core.Map json_)
: this(
excludedIds: json_.containsKey('excludedIds')
? (json_['excludedIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
includedIds: json_.containsKey('includedIds')
? (json_['includedIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);