DoublePropertyOptions.fromJson constructor
DoublePropertyOptions.fromJson(
- Map json_
Implementation
DoublePropertyOptions.fromJson(core.Map json_)
: this(
operatorOptions:
json_.containsKey('operatorOptions')
? DoubleOperatorOptions.fromJson(
json_['operatorOptions']
as core.Map<core.String, core.dynamic>,
)
: null,
);