toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bootDisk = this.bootDisk;
final labels = this.labels;
final startupScript = this.startupScript;
return {
'bootDisk': ?bootDisk,
'labels': ?labels,
'startupScript': ?startupScript,
};
}