VolumeMount constructor

VolumeMount({
  1. String? mountPath,
  2. String? name,
  3. bool? readOnly,
  4. String? subPath,
})

Implementation

VolumeMount({
  this.mountPath,
  this.name,
  this.readOnly,
  this.subPath,
});