writeAttributes method

void writeAttributes(
  1. XmlAttributes node
)

Implementation

void writeAttributes(XmlAttributes node) {
  if (node.attributes.isNotEmpty) {
    buffer.write(XmlToken.whitespace);
    writeIterable(node.attributes, XmlToken.whitespace);
  }
}