limit property

int limit

Implementation

int get limit => _limit;
void limit=(int newLimit)

Implementation

set limit(int newLimit) {
  _limit = newLimit;
  if (_position > _limit) {
    _position = _limit;
  }
}