OSDisk constructor

OSDisk({
  1. String? name,
  2. int? sizeGb,
  3. String? type,
})

Implementation

OSDisk({
  this.name,
  this.sizeGb,
  this.type,
});