id property
create id from hashcode when first requested
Implementation
dynamic get id {
_id ??= hashCode;
return notify ? null : _id;
}
create id from hashcode when first requested
dynamic get id {
_id ??= hashCode;
return notify ? null : _id;
}