Oauth2ClientCredentials.fromJson constructor
      
      Oauth2ClientCredentials.fromJson(
    
    
- Map json_
Implementation
Oauth2ClientCredentials.fromJson(core.Map json_)
    : this(
        clientId: json_['clientId'] as core.String?,
        clientSecret: json_['clientSecret'] as core.String?,
        secretManagerStoredClientSecret:
            json_['secretManagerStoredClientSecret'] as core.String?,
      );