setFrozenRowCount method

Future<void> setFrozenRowCount(
  1. int n
)

Set frozen (non-scrollable data) rows below the header band.

Implementation

Future<void> setFrozenRowCount(int n) async {
  await _configure(GridConfig()..layout = (LayoutConfig()..frozenRows = n));
}