RemoteInfo constructor

RemoteInfo({
  1. String hardwareName = "",
  2. String? hardwareIcon,
  3. String? hardwareText,
  4. String? hardwarePage,
  5. List<Software> softwareList = const [],
  6. Software? newestSoftware,
  7. bool isAvailable = false,
})

Implementation

RemoteInfo({
  this.hardwareName = "",
  this.hardwareIcon,
  this.hardwareText,
  this.hardwarePage,
  this.softwareList = const [],
  this.newestSoftware,
  this.isAvailable = false,
});