lastKey 方法

K? lastKey()

映射中的最后一个键。

如果映射为空,则返回 null

实现

K? lastKey() {
  if (_root == null) return null;
  return _last!.key;
}