toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final diskInterface = this.diskInterface;
final image = this.image;
final sizeGb = this.sizeGb;
final snapshot = this.snapshot;
final type = this.type;
return {
'diskInterface': ?diskInterface,
'image': ?image,
'sizeGb': ?sizeGb,
'snapshot': ?snapshot,
'type': ?type,
};
}