responseKeyProperties property Null safety

Map<String?, ManagedPropertyDescription?> responseKeyProperties
read / write

Cache of entity.properties using ResponseKey name as key, in case no ResponseKey is set then default property name is used as key

Implementation

late Map<String?, ManagedPropertyDescription?> responseKeyProperties = {
  for (final key in properties.keys)
    if (key != null) mapKeyName(key): properties[key]
};