Disk constructor

Disk({
  1. String? diskInterface,
  2. String? image,
  3. String? sizeGb,
  4. String? snapshot,
  5. String? type,
})

Implementation

Disk({
  this.diskInterface,
  this.image,
  this.sizeGb,
  this.snapshot,
  this.type,
});