entries property

Iterable<MapEntry<String, dynamic>> entries

The properties entries.

Implementation

Iterable<MapEntry<String, dynamic>> get entries => _properties.entries
    .map((e) => MapEntry(e.key, _resolveValue(e.key, e.value, null)));