GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.fromJson constructor
GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.fromJson(
- Map json_
Implementation
GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.fromJson(core.Map json_)
: this(
clientKey:
json_.containsKey('clientKey')
? GoogleCloudConnectorsV1Secret.fromJson(
json_['clientKey'] as core.Map<core.String, core.dynamic>,
)
: null,
jwtClaims:
json_.containsKey('jwtClaims')
? GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims.fromJson(
json_['jwtClaims'] as core.Map<core.String, core.dynamic>,
)
: null,
);