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