SupervisorDevice constructor

SupervisorDevice({
  1. num? apiPort,
  2. String? ipAddress,
  3. String? commit,
  4. String? status,
  5. num? downloadProgress,
  6. String? osVersion,
  7. String? supervisorVersion,
  8. bool? updatePending,
  9. bool? updateDownloaded,
  10. bool? updateFailed,
})

Returns a new SupervisorDevice instance.

Implementation

SupervisorDevice({
  this.apiPort,
  this.ipAddress,
  this.commit,
  this.status,
  this.downloadProgress,
  this.osVersion,
  this.supervisorVersion,
  this.updatePending,
  this.updateDownloaded,
  this.updateFailed,
});