PreconfiguredWafSet.fromJson constructor

PreconfiguredWafSet.fromJson(
  1. Map json_
)

Implementation

PreconfiguredWafSet.fromJson(core.Map json_)
    : this(
        expressionSets: json_.containsKey('expressionSets')
            ? (json_['expressionSets'] as core.List)
                .map((value) => WafExpressionSet.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );