Disk constructor
const
Disk({
- required int blockSize,
- required String busType,
- String? busVersion,
- required String description,
- required String device,
- String? devicePath,
- String? error,
- bool? card,
- required bool readOnly,
- required bool removable,
- bool? scsi,
- required bool system,
- bool? uas,
- bool? usb,
- bool? virtual,
- required int logicalBlockSize,
- required List<
Mountpoint> mountpoints, - required String raw,
- int? size,
- 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,
});