Entity constructor

Entity({
  1. String? id,
  2. String? typeId,
  3. String? url,
})

Implementation

Entity({
  this.id,
  this.typeId,
  this.url,
});