DiskInfo constructor

DiskInfo({
  1. bool? isSystemDisk,
  2. String? name,
  3. String? path,
  4. int? sizeInGb,
})

Implementation

DiskInfo({
  this.isSystemDisk,
  this.name,
  this.path,
  this.sizeInGb,
});