entries property

The entries of these ContentValues.

Implementation

Iterable<MapEntry<String, Object?>> get entries {
  return keys.map((String key) =>
      MapEntry<String, Object?>(key, _maybeUnwrapValue(_map[key])));
}