SecurityPoliciesListPreconfiguredExpressionSetsResponse.fromJson constructor
SecurityPoliciesListPreconfiguredExpressionSetsResponse.fromJson(
- Map json_
Implementation
SecurityPoliciesListPreconfiguredExpressionSetsResponse.fromJson(
core.Map json_)
: this(
preconfiguredExpressionSets:
json_.containsKey('preconfiguredExpressionSets')
? SecurityPoliciesWafConfig.fromJson(
json_['preconfiguredExpressionSets']
as core.Map<core.String, core.dynamic>)
: null,
);