length property

int length

The number of key/value pairs in the map.

Implementation

int get length {
  if (this == null) {
    return 0;
  }
  return this!.length;
}