AzureFilePersistentVolumeSource constructor

const AzureFilePersistentVolumeSource({
  1. bool? readOnly,
  2. required String secretName,
  3. String? secretNamespace,
  4. required String shareName,
})

Default constructor.

Implementation

const AzureFilePersistentVolumeSource({
  this.readOnly,
  required this.secretName,
  this.secretNamespace,
  required this.shareName,
});