limit method

Find limit(
  1. int val
)

Implementation

Find limit(int val) {
  if (_limit != null) throw Exception('Already limited!');

  _limit = val;
  return this;
}