isEmpty property - SplayTreeMap class - dart:collection library (original) (raw)
bool getisEmpty
override
Whether there is no key/value pair in the map.
Implementation
bool get isEmpty {
return (_root == null);
}
bool getisEmpty
override
Whether there is no key/value pair in the map.
bool get isEmpty {
return (_root == null);
}