Entity<Key extends EntityKey>.create constructor
Constructs an Entity object with optional id and timeMills.
Implementation
Entity.create({
String? id,
int? timeMills,
}) : idOrNull = id,
timeMillsOrNull = timeMills;