Volume constructor

Volume({
  1. String? name,
  2. double? sizeGb,
  3. String? volumeType,
})

Implementation

Volume({
  this.name,
  this.sizeGb,
  this.volumeType,
});