getCondition method

void getCondition(
  1. 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();
  }
}