nextRow property

int nextRow

Implementation

int get nextRow {
  var rowNrs = _rowNrs;
  if (rowNrs.isEmpty) {
    return firstRow;
  } else {
    return rowNrs.last + 1;
  }
}