call method

And call(
  1. dynamic obj
)

Implementation

And call(obj) {
  if (_rqlQuery != null) {
    return And([_rqlQuery, obj]);
  } else {
    throw RqlDriverError("Called and with too few values");
  }
}