setHoverConfig method

Future<void> setHoverConfig(
  1. HoverConfig config
)

Set hover enablement and highlight styles.

Implementation

Future<void> setHoverConfig(HoverConfig config) async {
  await _configure(
      GridConfig()..selection = (SelectionConfig()..hover = config));
}