StorageInformation constructor

StorageInformation({
  1. required uint32_t timeBootMs,
  2. required float totalCapacity,
  3. required float usedCapacity,
  4. required float availableCapacity,
  5. required float readSpeed,
  6. required float writeSpeed,
  7. required uint8_t storageId,
  8. required uint8_t storageCount,
  9. required StorageStatus status,
  10. required StorageType type,
  11. required List<char> name,
  12. required StorageUsageFlag storageUsage,
})

Implementation

StorageInformation({
  required this.timeBootMs,
  required this.totalCapacity,
  required this.usedCapacity,
  required this.availableCapacity,
  required this.readSpeed,
  required this.writeSpeed,
  required this.storageId,
  required this.storageCount,
  required this.status,
  required this.type,
  required this.name,
  required this.storageUsage,
});