toInstancePlatform method

InstancePlatform toInstancePlatform()

Implementation

InstancePlatform toInstancePlatform() {
  switch (this) {
    case 'LINUX_UNIX':
      return InstancePlatform.linuxUnix;
    case 'WINDOWS':
      return InstancePlatform.windows;
  }
  throw Exception('$this is not known in enum InstancePlatform');
}