focusLast method

void focusLast()

Implementation

void focusLast() {
  final rows = visibleRows();
  if (rows.isEmpty) return;
  _focused = rows.last.node.id;
  notifyListeners();
}