frozenColCount method

Future<int> frozenColCount()

Get the number of frozen (non-scrollable data) columns.

Implementation

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