CinderPersistentVolumeSource constructor

const CinderPersistentVolumeSource({
  1. String? fsType,
  2. bool? readOnly,
  3. SecretReference? secretRef,
  4. required String volumeID,
})

Default constructor.

Implementation

const CinderPersistentVolumeSource({
  this.fsType,
  this.readOnly,
  this.secretRef,
  required this.volumeID,
});