toLambdaFunctionTimeoutType method

LambdaFunctionTimeoutType toLambdaFunctionTimeoutType()

Implementation

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