Returns true if key is in the tree.
true
key
@override bool isInTree(Node? key) => key != null && root.contains(key);