GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict.fromJson constructor

GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecaptchaenterpriseV1SmsTollFraudVerdict.fromJson(core.Map json_)
    : this(
        reasons: (json_['reasons'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        risk: (json_['risk'] as core.num?)?.toDouble(),
      );