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