encodeXmlIntValue function

XmlElement encodeXmlIntValue(
  1. String name,
  2. int value
)

Implementation

XmlElement encodeXmlIntValue(String name, int value) {
  return encodeXmlStringValue(name, value.toString());
}