limit method

DBHelper limit(
  1. int count, [
  2. int offset = 0
])

Set LIMIT and OFFSET

Implementation

DBHelper limit(int count, [int offset = 0]) {
  _limit = count;
  _offset = offset;
  return this;
}