text property

  1. @Deprecated('Use `XmlData.value` getter instead')
  2. @override
String text
inherited

Returns the concatenated text of this node or its descendants, for text, CDATA, and comment nodes return the textual value of the node.

Implementation

@Deprecated('Use `XmlData.value` getter instead')
@override
String get text => value;
  1. @Deprecated('Use `XmlData.value` setter instead')
void text=(String text)
inherited

Implementation

@Deprecated('Use `XmlData.value` setter instead')
set text(String text) => value = text;