Dart
dart:collection
SplayTreeMap
<
K
,
V
>
isEmpty property
description
isEmpty property
bool
isEmpty
override
Returns true if there is no key/value pair in the map.
Implementation
bool
get
isEmpty {
return
(_root ==
null
); }