Decodes the XML string into a normal string. For example, < is converted to <.
<
<
txt
static String? decode(String? value) => value == null ? null: decodeNS(value);