GoogleCloudRecaptchaenterpriseV1ChallengeMetrics.fromJson constructor
GoogleCloudRecaptchaenterpriseV1ChallengeMetrics.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1ChallengeMetrics.fromJson(core.Map json_)
: this(
failedCount: json_.containsKey('failedCount')
? json_['failedCount'] as core.String
: null,
nocaptchaCount: json_.containsKey('nocaptchaCount')
? json_['nocaptchaCount'] as core.String
: null,
pageloadCount: json_.containsKey('pageloadCount')
? json_['pageloadCount'] as core.String
: null,
passedCount: json_.containsKey('passedCount')
? json_['passedCount'] as core.String
: null,
);