toValue method
Implementation
String toValue() {
switch (this) {
case PortProtocol.http:
return 'http';
case PortProtocol.tcp:
return 'tcp';
}
}
String toValue() {
switch (this) {
case PortProtocol.http:
return 'http';
case PortProtocol.tcp:
return 'tcp';
}
}