GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.fromJson constructor
GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.fromJson(
- Map _json
Implementation
GoogleFirebaseAppcheckV1betaBatchGetRecaptchaEnterpriseConfigsResponse.fromJson(
core.Map _json)
: this(
configs: _json.containsKey('configs')
? (_json['configs'] as core.List)
.map((value) =>
GoogleFirebaseAppcheckV1betaRecaptchaEnterpriseConfig
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);