LIMIT method

Express LIMIT(
  1. int limit, [
  2. int? offset
])

Implementation

Express LIMIT(int limit, [int? offset]) {
  if (offset == null) return this << "LIMIT" << limit.toString();
  return this << "LIMIT" << limit.toString() << "," << offset.toString();
}