toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final hostname = this.hostname;
final password = this.password;
final port = this.port;
final privateKey = this.privateKey;
final username = this.username;
return {
'hostname': ?hostname,
'password': ?password,
'port': ?port,
'privateKey': ?privateKey,
'username': ?username,
};
}