where method

Avanda where(
  1. dynamic conditions
)

Implementation

Avanda where(dynamic conditions) {
  if (conditions is Map) {
    queryTree.ft = objToFilter(conditions);
  } else if (conditions is String) {
    lastCol = conditions;
  }
  return this;
}