decode static method

String? decode(
  1. String? value
)

Decodes the XML string into a normal string.

  • For example, &lt; is convert to <.
    • txt is the text to decode.

Implementation

static String? decode(String? value)
=> value == null ? null: decodeNS(value);