toWorkflowExecutionTimeoutType method

WorkflowExecutionTimeoutType toWorkflowExecutionTimeoutType()

Implementation

WorkflowExecutionTimeoutType toWorkflowExecutionTimeoutType() {
  switch (this) {
    case 'START_TO_CLOSE':
      return WorkflowExecutionTimeoutType.startToClose;
  }
  throw Exception('$this is not known in enum WorkflowExecutionTimeoutType');
}