setRowIndicatorStartWidth method
Set the start-side row-indicator width.
Implementation
Future<void> setRowIndicatorStartWidth(int width) async {
await _configure(
GridConfig()
..indicators = (IndicatorsConfig()
..rowStart = (RowIndicatorConfig()..width = width < 1 ? 1 : width)),
);
}