FlexVolumeSource constructor

const FlexVolumeSource({
  1. required String driver,
  2. String? fsType,
  3. Map<String, String>? options,
  4. bool? readOnly,
  5. LocalObjectReference? secretRef,
})

Default constructor.

Implementation

const FlexVolumeSource({
  required this.driver,
  this.fsType,
  this.options,
  this.readOnly,
  this.secretRef,
});