nextRow method

SeatsBuilder nextRow([
  1. int count = 1
])

Implementation

SeatsBuilder nextRow([int count = 1]) {
  _validateCount(count, 'count');
  _actions.add((state) => state.nextRow(count));
  return this;
}