Volume constructor

Volume({
  1. String? deviceName,
  2. GCS? gcs,
  3. List<String>? mountOptions,
  4. String? mountPath,
  5. NFS? nfs,
})

Implementation

Volume({
  this.deviceName,
  this.gcs,
  this.mountOptions,
  this.mountPath,
  this.nfs,
});