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