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