Entity constructor

Entity(
  1. Key key,
  2. Map<String, Object?> properties, {
  3. Set<String> unIndexedProperties = const <String>{},
})

Implementation

Entity(this.key, this.properties,
    {this.unIndexedProperties = const <String>{}});