ContainerMountPoint constructor

const ContainerMountPoint({
  1. String? type,
  2. String? source,
  3. String? target,
  4. bool? readOnly,
  5. String? consistency,
  6. ContainerBindOptions? bindOptions,
  7. ContainerVolumeOptions? volumeOptions,
  8. ContainerImageOptions? imageOptions,
  9. ContainerTmpfsOptions? tmpfsOptions,
})

Creates a ContainerMountPoint with the given fields.

Implementation

const ContainerMountPoint({
  this.type,
  this.source,
  this.target,
  this.readOnly,
  this.consistency,
  this.bindOptions,
  this.volumeOptions,
  this.imageOptions,
  this.tmpfsOptions,
});