menu
Dart
dart:collection
SplayTreeMap
<
K
,
V
>
lastKey method
lastKey
dark_mode
light_mode
描述
lastKey
方法
K?
lastKey
(
)
映射中的最后一个键。
如果映射为空,则返回
null
。
实现
K? lastKey() { if (_root == null) return null; return _last!.key; }
Dart
dart:collection
SplayTreeMap
<
K
,
V
>
lastKey 方法
SplayTreeMap 类
Cookie 管理控件