thread property

String? thread

Implementation

String? get thread => children
    .firstWhereOrNull((child) => (child.name == 'thread'))
    ?.textValue;
void thread=(String? value)

Implementation

set thread(String? value) {
  var element = XmppElement();
  element.name = 'thread';
  element.textValue = value;
  addChild(element);
}