textElement top-level constant

TextElement const textElement

Denotes a field as coming from the XML text inside the current tag.

Example: `dart @tag('note') class Note { @textElement final String body;

Note(this.body); } xml

Implementation

const textElement = TextElement();