DoublePropertyOptions.fromJson constructor

DoublePropertyOptions.fromJson(
  1. 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,
      );