setRowIndicatorStartWidth method

Future<void> setRowIndicatorStartWidth(
  1. int width
)

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)),
  );
}