setShowRowIndicator method
Show or hide the start-side row-indicator band.
Implementation
Future<void> setShowRowIndicator(bool visible) async {
final row = RowIndicatorConfig()..visible = visible;
await _configure(
GridConfig()..indicators = (IndicatorsConfig()..rowStart = row),
);
}