IntegerOperatorOptions.fromJson constructor
IntegerOperatorOptions.fromJson(
- Map json_
Implementation
IntegerOperatorOptions.fromJson(core.Map json_)
: this(
greaterThanOperatorName: json_.containsKey('greaterThanOperatorName')
? json_['greaterThanOperatorName'] as core.String
: null,
lessThanOperatorName: json_.containsKey('lessThanOperatorName')
? json_['lessThanOperatorName'] as core.String
: null,
operatorName: json_.containsKey('operatorName')
? json_['operatorName'] as core.String
: null,
);