WafExpressionSetExpression.fromJson constructor

WafExpressionSetExpression.fromJson(
  1. Map json_
)

Implementation

WafExpressionSetExpression.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        sensitivity: json_.containsKey('sensitivity')
            ? json_['sensitivity'] as core.int
            : null,
      );