toStepCancellationOption method
Implementation
StepCancellationOption toStepCancellationOption() {
  switch (this) {
    case 'SEND_INTERRUPT':
      return StepCancellationOption.sendInterrupt;
    case 'TERMINATE_PROCESS':
      return StepCancellationOption.terminateProcess;
  }
  throw Exception('$this is not known in enum StepCancellationOption');
}