setSelectionMode method

Future<void> setSelectionMode(
  1. SelectionMode mode
)

Set the selection mode (free, by-row, by-column, listbox).

Implementation

Future<void> setSelectionMode(SelectionMode mode) async {
  await _configure(
      GridConfig()..selection = (SelectionConfig()..mode = mode));
}