moveNext method

void moveNext()

Moves applier to next ARBItem

Implementation

void moveNext() {
  if (!canMoveNext) {
    return;
  }

  _currentItemIndex++;
}