SecretVolumeSource constructor

const SecretVolumeSource({
  1. int? defaultMode,
  2. List<KeyToPath>? items,
  3. bool? optional,
  4. String? secretName,
})

Default constructor.

Implementation

const SecretVolumeSource({
  this.defaultMode,
  this.items,
  this.optional,
  this.secretName,
});