addExpress method

Express addExpress(
  1. Express other
)

Implementation

Express addExpress(Express other) {
  this.buffer << other.sql;
  this.args.addAll(other.args);
  return this;
}