AzureDiskVolumeSource constructor

const AzureDiskVolumeSource({
  1. String? cachingMode,
  2. required String diskName,
  3. required String diskURI,
  4. String? fsType,
  5. String? kind,
  6. bool? readOnly,
})

The main constructor.

Implementation

const AzureDiskVolumeSource({
  this.cachingMode,
  required this.diskName,
  required this.diskURI,
  this.fsType,
  this.kind,
  this.readOnly,
});