CinderVolumeSource constructor

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

Default constructor.

Implementation

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