getCondition method
void
getCondition(
- dynamic condition
Implementation
void getCondition(dynamic condition) {
if (condition is Predicate) predicate = condition;
if (condition is Condition) {
conds = condition.getList();
} else {
conds = Condition(condition).getList();
}
}