DoubleOperatorOptions.fromJson constructor

DoubleOperatorOptions.fromJson(
  1. Map json_
)

Implementation

DoubleOperatorOptions.fromJson(core.Map json_)
    : this(
        operatorName: json_.containsKey('operatorName')
            ? json_['operatorName'] as core.String
            : null,
      );