toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final hiveDatabaseName = this.hiveDatabaseName;
final instanceConnectionName = this.instanceConnectionName;
final ipAddress = this.ipAddress;
final natSubnet = this.natSubnet;
final password = this.password;
final port = this.port;
final proxySubnet = this.proxySubnet;
final username = this.username;
return {
'hiveDatabaseName': ?hiveDatabaseName,
'instanceConnectionName': ?instanceConnectionName,
'ipAddress': ?ipAddress,
'natSubnet': ?natSubnet,
'password': ?password,
'port': ?port,
'proxySubnet': ?proxySubnet,
'username': ?username,
};
}