firstKey 方法

K? firstKey()

映射中的第一个键。

如果映射为空,返回 null

实现

K? firstKey() {
  if (_root == null) return null;
  return _first!.key;
}