Entity constructor

Entity({
  1. Map<String, Object?>? fields,
  2. String? name,
})

Implementation

Entity({
  this.fields,
  this.name,
});