CSIVolumeSource constructor

const CSIVolumeSource({
  1. required String driver,
  2. String? fsType,
  3. LocalObjectReference? nodePublishSecretRef,
  4. bool? readOnly,
  5. Map<String, String>? volumeAttributes,
})

Default constructor.

Implementation

const CSIVolumeSource({
  required this.driver,
  this.fsType,
  this.nodePublishSecretRef,
  this.readOnly,
  this.volumeAttributes,
});