shouldBuildRow method

bool shouldBuildRow(
  1. T row,
  2. int index
)

Optional: Determine if row should be built. Useful for conditional rendering (e.g., skip filtered rows).

Implementation

bool shouldBuildRow(T row, int index) => true;