ContainerVolumeOptions constructor

const ContainerVolumeOptions({
  1. bool? noCopy,
  2. Map<String, String>? labels,
  3. ContainerVolumeDriverConfig? driverConfig,
  4. String? subpath,
})

Creates a ContainerVolumeOptions with the given fields.

Implementation

const ContainerVolumeOptions({
  this.noCopy,
  this.labels,
  this.driverConfig,
  this.subpath,
});