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