buildRow method
Implementation
PlutoRow? buildRow(int rowIdx) {
// row already created
if (rowIdx < rows.length) return rows[rowIdx];
// build new row
return buildPlutoRow(rowIdx);
}
PlutoRow? buildRow(int rowIdx) {
// row already created
if (rowIdx < rows.length) return rows[rowIdx];
// build new row
return buildPlutoRow(rowIdx);
}