FlexPersistentVolumeSource constructor

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

Default constructor.

Implementation

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