RowId constructor

RowId(
  1. int rowid
)

Creates a RowId instance initialized with the given rowid.

The rowid must be greater than zero.

Implementation

RowId(this.rowid) {
  checkState(rowid > 0);
}