rowCount method

Future<int> rowCount()

Get the total number of rows.

Implementation

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