getRowHeight method

Future<int> getRowHeight(
  1. int row
)

Get the height of a specific row.

Implementation

Future<int> getRowHeight(int row) async {
  // Use GetConfig to read default; per-row heights require GetCells or
  // specialized query — for now read from config defaults.
  final config = await _getConfig();
  return config.layout.defaultRowHeight;
}