id property

dynamic id

create id from hashcode when first requested

Implementation

dynamic get id {
  _id ??= hashCode;
  return notify ? null : _id;
}