toLogicalOperator method

LogicalOperator toLogicalOperator()

Implementation

LogicalOperator toLogicalOperator() {
  switch (this) {
    case 'EQUALS':
      return LogicalOperator.equals;
  }
  throw Exception('$this is not known in enum LogicalOperator');
}