getMoveAt method
Get move at specific index
Implementation
HistoryMove? getMoveAt(int index) {
if (index < 0 || index >= _history.length) return null;
return _history[index];
}
Get move at specific index
HistoryMove? getMoveAt(int index) {
if (index < 0 || index >= _history.length) return null;
return _history[index];
}