Disk constructor

const Disk({
  1. required int blockSize,
  2. required String busType,
  3. String? busVersion,
  4. required String description,
  5. required String device,
  6. String? devicePath,
  7. String? error,
  8. bool? card,
  9. required bool readOnly,
  10. required bool removable,
  11. bool? scsi,
  12. required bool system,
  13. bool? uas,
  14. bool? usb,
  15. bool? virtual,
  16. required int logicalBlockSize,
  17. required List<Mountpoint> mountpoints,
  18. required String raw,
  19. int? size,
  20. PartitionTableType? partitionTableType,
})

Implementation

const Disk({
  required this.blockSize,
  required this.busType,
  this.busVersion,
  required this.description,
  required this.device,
  this.devicePath,
  this.error,
  this.card,
  required this.readOnly,
  required this.removable,
  this.scsi,
  required this.system,
  this.uas,
  this.usb,
  this.virtual,
  required this.logicalBlockSize,
  required this.mountpoints,
  required this.raw,
  this.size,
  this.partitionTableType,
});