receiver property
Unique identifier of the message receiver.
This ID identifies the target of the message (user/group) and cannot be null.
Implementation
@override
ID get receiver {
ID? did = _receiver;
if (did == null) {
did = ID.parse(this['receiver']);
did ??= ID.ANYONE;
_receiver = did;
}
return did;
}