AzureFileVolumeSource constructor

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

Default constructor.

Implementation

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