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