Disk constructor

Disk({
  1. String? diskType,
  2. String? mountPoint,
  3. int? sizeGb,
})

Implementation

Disk({
  this.diskType,
  this.mountPoint,
  this.sizeGb,
});