isEmpty property

bool get isEmpty

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

Implementation

bool get isEmpty => _fields.keys
    .where((key) => !key.startsWith(interpreter.lexicon.internalPrefix))
    .isEmpty;