buildRow method

PlutoRow? buildRow(
  1. int rowIdx
)

Implementation

PlutoRow? buildRow(int rowIdx) {
  // row already created
  if (rowIdx < rows.length) return rows[rowIdx];

  // build new row
  return buildPlutoRow(rowIdx);
}