Entity constructor

Entity({
  1. Key? key,
  2. Map<String, Value>? properties,
})

Implementation

Entity({
  this.key,
  this.properties,
});