RBDVolumeSource constructor

const RBDVolumeSource({
  1. String? fsType,
  2. required String image,
  3. String? keyring,
  4. required List<String> monitors,
  5. String? pool,
  6. bool? readOnly,
  7. LocalObjectReference? secretRef,
  8. String? user,
})

The main constructor.

Implementation

const RBDVolumeSource({
  this.fsType,
  required this.image,
  this.keyring,
  required this.monitors,
  this.pool,
  this.readOnly,
  this.secretRef,
  this.user,
});