setRowCount method

Future<void> setRowCount(
  1. int n
)

Set the total number of rows.

Implementation

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