isEmpty property - SplayTreeMap class - dart:collection library (original) (raw)

description

bool getisEmpty

override

Whether there is no key/value pair in the map.

Implementation

bool get isEmpty {
  return (_root == null);
}