OAuthCredential.fromJson constructor
      
      OAuthCredential.fromJson(
    
    
- Map json_
Implementation
OAuthCredential.fromJson(core.Map json_)
  : this(
      oauthTokenSecretVersion:
          json_['oauthTokenSecretVersion'] as core.String?,
      username: json_['username'] as core.String?,
    );