GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials.fromJson constructor

GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials.fromJson(
  1. Map json_
)

Implementation

GoogleCloudConnectorsV1AuthConfigOauth2ClientCredentials.fromJson(
  core.Map json_,
) : this(
      clientId: json_['clientId'] as core.String?,
      clientSecret: json_.containsKey('clientSecret')
          ? GoogleCloudConnectorsV1Secret.fromJson(
              json_['clientSecret'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );