GoogleCloudRecaptchaenterpriseV1ScoreDistribution.fromJson constructor
GoogleCloudRecaptchaenterpriseV1ScoreDistribution.fromJson(
- Map json_
Implementation
GoogleCloudRecaptchaenterpriseV1ScoreDistribution.fromJson(core.Map json_)
: this(
scoreBuckets: json_.containsKey('scoreBuckets')
? (json_['scoreBuckets'] as core.Map<core.String, core.dynamic>)
.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
)
: null,
);