setActiveCellStyle method

Future<void> setActiveCellStyle(
  1. HighlightStyle style
)

Set the active/current cell highlight style.

Implementation

Future<void> setActiveCellStyle(HighlightStyle style) async {
  await _configure(
      GridConfig()..selection = (SelectionConfig()..activeCellStyle = style));
}