GoogleCloudApihubV1Oauth2ClientCredentialsConfig.fromJson constructor

GoogleCloudApihubV1Oauth2ClientCredentialsConfig.fromJson(
  1. Map json_
)

Implementation

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