ContainerBindOptions constructor

const ContainerBindOptions({
  1. String? propagation,
  2. bool? nonRecursive,
  3. bool? createMountpoint,
  4. bool? readOnlyNonRecursive,
  5. bool? readOnlyForceRecursive,
})

Creates a ContainerBindOptions with the given fields.

Implementation

const ContainerBindOptions({
  this.propagation,
  this.nonRecursive,
  this.createMountpoint,
  this.readOnlyNonRecursive,
  this.readOnlyForceRecursive,
});