Returns the Presence of this User.
Presence? get presence => presenceIndex == null ? null : Presence.values[presenceIndex!];
Sets the Presence of this User to be the provided pres.
pres
set presence(Presence? pres) { presenceIndex = pres?.index; }