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