IntegerPropertyOptions.fromJson constructor
IntegerPropertyOptions.fromJson(
- Map json_
Implementation
IntegerPropertyOptions.fromJson(core.Map json_)
: this(
integerFacetingOptions: json_.containsKey('integerFacetingOptions')
? IntegerFacetingOptions.fromJson(json_['integerFacetingOptions']
as core.Map<core.String, core.dynamic>)
: null,
maximumValue: json_.containsKey('maximumValue')
? json_['maximumValue'] as core.String
: null,
minimumValue: json_.containsKey('minimumValue')
? json_['minimumValue'] as core.String
: null,
operatorOptions: json_.containsKey('operatorOptions')
? IntegerOperatorOptions.fromJson(json_['operatorOptions']
as core.Map<core.String, core.dynamic>)
: null,
orderedRanking: json_.containsKey('orderedRanking')
? json_['orderedRanking'] as core.String
: null,
);