toEvaluationType method

EvaluationType toEvaluationType()

Implementation

EvaluationType toEvaluationType() {
  switch (this) {
    case 'Static':
      return EvaluationType.static;
    case 'Dynamic':
      return EvaluationType.dynamic;
  }
  throw Exception('$this is not known in enum EvaluationType');
}