toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clientId = this.clientId;
final clientSecretVersion = this.clientSecretVersion;
final oauthGrantType = this.oauthGrantType;
final scopes = this.scopes;
final tokenEndpoint = this.tokenEndpoint;
return {
'clientId': ?clientId,
'clientSecretVersion': ?clientSecretVersion,
'oauthGrantType': ?oauthGrantType,
'scopes': ?scopes,
'tokenEndpoint': ?tokenEndpoint,
};
}