CephFSVolumeSource constructor

const CephFSVolumeSource({
  1. required List<String> monitors,
  2. String? path,
  3. bool? readOnly,
  4. String? secretFile,
  5. LocalObjectReference? secretRef,
  6. String? user,
})

Default constructor.

Implementation

const CephFSVolumeSource({
  required this.monitors,
  this.path,
  this.readOnly,
  this.secretFile,
  this.secretRef,
  this.user,
});