presence property

Presence? get presence

Returns the Presence of this User.

Implementation

Presence? get presence =>
    presenceIndex == null ? null : Presence.values[presenceIndex!];
set presence (Presence? pres)

Sets the Presence of this User to be the provided pres.

Implementation

set presence(Presence? pres) {
  presenceIndex = pres?.index;
}