thread property
String?
get
thread
Implementation
String? get thread => children
.firstWhereOrNull((child) => (child.name == 'thread'))
?.textValue;
set
thread
(String? value)
Implementation
set thread(String? value) {
var element = XmppElement();
element.name = 'thread';
element.textValue = value;
addChild(element);
}