ContainerMount constructor

const ContainerMount({
  1. String? type,
  2. String? name,
  3. String? source,
  4. String? destination,
  5. String? driver,
  6. String? mode,
  7. bool? rw,
  8. String? propagation,
})

Creates a ContainerMount with the given fields.

Implementation

const ContainerMount({
  this.type,
  this.name,
  this.source,
  this.destination,
  this.driver,
  this.mode,
  this.rw,
  this.propagation,
});