GoogleFirebaseAppcheckV1BatchGetRecaptchaEnterpriseConfigsResponse.fromJson constructor

GoogleFirebaseAppcheckV1BatchGetRecaptchaEnterpriseConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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