toExpressionType method

ExpressionType toExpressionType()

Implementation

ExpressionType toExpressionType() {
  switch (this) {
    case 'SQL':
      return ExpressionType.sql;
  }
  throw Exception('$this is not known in enum ExpressionType');
}