GoogleCloudRecaptchaenterpriseV1ScoreDistribution.fromJson constructor

GoogleCloudRecaptchaenterpriseV1ScoreDistribution.fromJson(
  1. 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,
      );