toChangeType method

ChangeType toChangeType()

Implementation

ChangeType toChangeType() {
  switch (this) {
    case 'immediate':
      return ChangeType.immediate;
    case 'requires-reboot':
      return ChangeType.requiresReboot;
  }
  throw Exception('$this is not known in enum ChangeType');
}