GoogleCloudRecaptchaenterpriseV1AppleDeveloperId.fromJson constructor

GoogleCloudRecaptchaenterpriseV1AppleDeveloperId.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRecaptchaenterpriseV1AppleDeveloperId.fromJson(core.Map json_)
    : this(
        keyId:
            json_.containsKey('keyId') ? json_['keyId'] as core.String : null,
        privateKey: json_.containsKey('privateKey')
            ? json_['privateKey'] as core.String
            : null,
        teamId: json_.containsKey('teamId')
            ? json_['teamId'] as core.String
            : null,
      );