Disk constructor

Disk({
  1. String? name,
  2. int? sizeGb,
  3. String? sourceImage,
  4. String? type,
})

Implementation

Disk({
  this.name,
  this.sizeGb,
  this.sourceImage,
  this.type,
});