toSoftwareToUpdate method

SoftwareToUpdate toSoftwareToUpdate()

Implementation

SoftwareToUpdate toSoftwareToUpdate() {
  switch (this) {
    case 'core':
      return SoftwareToUpdate.core;
    case 'ota_agent':
      return SoftwareToUpdate.otaAgent;
  }
  throw Exception('$this is not known in enum SoftwareToUpdate');
}