buildRow abstract method

TableSpan? buildRow(
  1. int index
)

Builds the TableSpan that describe the row at the provided index.

The builder must return a valid TableSpan for all indices smaller than rowCount. If rowCount is null, the number of rows will be infinite, unless this builder returns null to signal the end of the columns.

Implementation

TableSpan? buildRow(int index);