VolumeDevice constructor

const VolumeDevice({
  1. required String devicePath,
  2. required String name,
})

Default constructor.

Implementation

const VolumeDevice({
  required this.devicePath,
  required this.name,
});