isEmpty property

  1. @override
bool isEmpty
inherited

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

Implementation

@override
bool get isEmpty {
  doAutoPurge();
  return _map.isEmpty;
}