toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final baseUrl = this.baseUrl;
final displayName = this.displayName;
final gpgKeys = this.gpgKeys;
final id = this.id;
return {
'baseUrl': ?baseUrl,
'displayName': ?displayName,
'gpgKeys': ?gpgKeys,
'id': ?id,
};
}