selectedIndex property Null safety
An index of the corresponding selected row.
Implementation
int get selectedIndex => _selectedIndex;
An index of the corresponding selected row.
Implementation
set selectedIndex(int newSelectedIndex) {
if (_selectedIndex == newSelectedIndex) {
return;
}
_selectedIndex = newSelectedIndex;
_notifyDataGridPropertyChangeListeners(propertyName: 'selectedIndex');
}