HostPathVolumeSource constructor

const HostPathVolumeSource({
  1. required String path,
  2. String? type,
})

The main constructor.

Implementation

const HostPathVolumeSource({
  required this.path,
  this.type,
});