toContainerType method

ContainerType toContainerType()

Implementation

ContainerType toContainerType() {
  switch (this) {
    case 'DOCKER':
      return ContainerType.docker;
  }
  throw Exception('$this is not known in enum ContainerType');
}