fromJid property

Jid? get fromJid
inherited

Implementation

Jid? get fromJid => _fromJid;
set fromJid (Jid? value)
inherited

Implementation

set fromJid(Jid? value) {
  _fromJid = value;
  addAttribute(XmppAttribute('from', _fromJid!.fullJid));
}