position property

int get position

Implementation

int get position => _position;
set position (int value)

Implementation

set position(int value) {
  if (value < 0 || value > _limit) throw RangeError("position $value out of bounds (limit $_limit)");
  _position = value;
}