VolumeMount constructor

const VolumeMount({
  1. required String mountPath,
  2. String? mountPropagation,
  3. required String name,
  4. bool? readOnly,
  5. String? subPath,
  6. String? subPathExpr,
})

Default constructor.

Implementation

const VolumeMount({
  required this.mountPath,
  this.mountPropagation,
  required this.name,
  this.readOnly,
  this.subPath,
  this.subPathExpr,
});