GoogleCloudRecaptchaenterpriseV1ChallengeRuleGroup.fromJson constructor
GoogleCloudRecaptchaenterpriseV1ChallengeRuleGroup.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1ChallengeRuleGroup.fromJson(core.Map json_)
: this(
actions: (json_['actions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
challengeRules: (json_['challengeRules'] as core.List?)
?.map(
(value) => GoogleCloudRecaptchaenterpriseV1ChallengeRule.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);