TGetOauth2CredentialResponse.fromJson constructor
Implementation
factory TGetOauth2CredentialResponse.fromJson(Map<String, dynamic> json) {
final _oauth2Credential = v1Oauth2Credential.fromJson(json['oauth2Credential'] as Map<String, dynamic>);
return TGetOauth2CredentialResponse(
oauth2Credential: _oauth2Credential,
);
}