HtmlOperatorOptions.fromJson constructor

HtmlOperatorOptions.fromJson(
  1. Map json_
)

Implementation

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