toCleartextMarkup method

String toCleartextMarkup()

Implementation

String toCleartextMarkup() {
  final buf = StringBuffer();
  for (final child in children) {
    child._toMarkupImpl(buf);
  }
  return buf.toString();
}