properties property Null safety
All properties (relationships and attributes) of this entity.
The string key is the name of the property, case-sensitive. Values will be instances of either ManagedAttributeDescription or ManagedRelationshipDescription. This is the concatenation of attributes and relationships.
Implementation
Map<String?, ManagedPropertyDescription?> get properties {
final all = Map<String?, ManagedPropertyDescription?>.from(attributes);
if (relationships != null) {
all.addAll(relationships!);
}
return all;
}