Software constructor

const Software({
  1. String name = "",
  2. Version version = const Version(),
  3. String path = "",
  4. String? icon,
  5. String? text,
  6. String? page,
  7. int? size,
  8. Version? hardwareVersion,
  9. Version? minHardwareVersion,
  10. Version? maxHardwareVersion,
})

Implementation

const Software({
  this.name = "",
  this.version = const Version(),
  this.path = "",
  this.icon,
  this.text,
  this.page,
  this.size,
  this.hardwareVersion,
  this.minHardwareVersion,
  this.maxHardwareVersion,
});