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