Volume constructor

Volume({
  1. ConfigMapVolumeSource? configMap,
  2. EmptyDirVolumeSource? emptyDir,
  3. String? name,
  4. SecretVolumeSource? secret,
})

Implementation

Volume({
  this.configMap,
  this.emptyDir,
  this.name,
  this.secret,
});