encodeXmlUint8ListValue function

XmlElement encodeXmlUint8ListValue(
  1. String name,
  2. Uint8List value
)

Implementation

XmlElement encodeXmlUint8ListValue(String name, Uint8List value) {
  return encodeXmlStringValue(name, base64.encode(value));
}