Entity constructor
const
Entity(
- int id
Creates a new instance of Entity identified by id
. The id
must be 0
or greater.
Implementation
const Entity(this.id) : assert(id >= 0, 'Entity id must be 0 or greater!');