selectedIndex property

int selectedIndex

An index of the corresponding selected row.

Implementation

int get selectedIndex => _selectedIndex;
void selectedIndex=(int newSelectedIndex)

An index of the corresponding selected row.

Implementation

set selectedIndex(int newSelectedIndex) {
  if (_selectedIndex == newSelectedIndex) {
    return;
  }

  _selectedIndex = newSelectedIndex;
  _notifyDataGridPropertyChangeListeners(propertyName: 'selectedIndex');
}