EnumOperatorOptions.fromJson constructor

EnumOperatorOptions.fromJson(
  1. Map json_
)

Implementation

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