frozenRowCount method

Future<int> frozenRowCount()

Get the number of frozen (non-scrollable data) rows below the header band.

Implementation

Future<int> frozenRowCount() async {
  final config = await _getConfig();
  return config.layout.frozenRows;
}