toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucket = this.bucket;
final password = this.password;
final reverseProxySubnet = this.reverseProxySubnet;
final rootPath = this.rootPath;
final subnetIpRange = this.subnetIpRange;
final username = this.username;
final vpcNetwork = this.vpcNetwork;
return {
'bucket': ?bucket,
'password': ?password,
'reverseProxySubnet': ?reverseProxySubnet,
'rootPath': ?rootPath,
'subnetIpRange': ?subnetIpRange,
'username': ?username,
'vpcNetwork': ?vpcNetwork,
};
}