pop method

Pops the current focus entry from the stack.

Removes and returns the top focus entry, or null if empty

Implementation

FocusHistoryEntry? pop() {
  _lastPoppedEntry = _stack.isNotEmpty ? _stack.removeLast() : null;
  return _lastPoppedEntry;
}