LocalVolumeSource constructor

const LocalVolumeSource({
  1. String? fsType,
  2. required String path,
})

Default constructor.

Implementation

const LocalVolumeSource({
  this.fsType,
  required this.path,
});