offset method

Find offset(
  1. int val
)

Implementation

Find offset(int val) {
  if (_offset != null) throw Exception('Cant use more than one offset!');

  _offset = val;
  return this;
}