Volume constructor

Volume({
  1. ExistingDisk? existingDisk,
  2. NFSMount? nfsMount,
  3. PersistentDisk? persistentDisk,
  4. String? volume,
})

Implementation

Volume({
  this.existingDisk,
  this.nfsMount,
  this.persistentDisk,
  this.volume,
});