toInputDeviceIpScheme method

InputDeviceIpScheme toInputDeviceIpScheme()

Implementation

InputDeviceIpScheme toInputDeviceIpScheme() {
  switch (this) {
    case 'STATIC':
      return InputDeviceIpScheme.static;
    case 'DHCP':
      return InputDeviceIpScheme.dhcp;
  }
  throw Exception('$this is not known in enum InputDeviceIpScheme');
}