toValue method
Implementation
String toValue() {
switch (this) {
case StepCancellationOption.sendInterrupt:
return 'SEND_INTERRUPT';
case StepCancellationOption.terminateProcess:
return 'TERMINATE_PROCESS';
}
}
String toValue() {
switch (this) {
case StepCancellationOption.sendInterrupt:
return 'SEND_INTERRUPT';
case StepCancellationOption.terminateProcess:
return 'TERMINATE_PROCESS';
}
}