onRemove method

void onRemove()

should be called whenever this stack is removed

Implementation

void onRemove() {
  final s = _scope;
  if (s is VoyagerScopeRemovable) {
    s.onScopeRemoved();
  }
}