GoogleCloudRecaptchaenterpriseV1IOSKeySettings.fromJson constructor

GoogleCloudRecaptchaenterpriseV1IOSKeySettings.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecaptchaenterpriseV1IOSKeySettings.fromJson(core.Map json_)
    : this(
        allowAllBundleIds: json_.containsKey('allowAllBundleIds')
            ? json_['allowAllBundleIds'] as core.bool
            : null,
        allowedBundleIds: json_.containsKey('allowedBundleIds')
            ? (json_['allowedBundleIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        appleDeveloperId: json_.containsKey('appleDeveloperId')
            ? GoogleCloudRecaptchaenterpriseV1AppleDeveloperId.fromJson(
                json_['appleDeveloperId']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );