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