call method

Add call(
  1. dynamic obj
)

Implementation

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