stringValue property

String stringValue

Implementation

String get stringValue {
  var buffer = StringBuffer();
  node.findAllElements('t').forEach((child) {
    if (child.parentElement == null ||
        child.parentElement!.name.local != 'rPh') {
      buffer.write(Parser._parseValue(child));
    }
  });
  return buffer.toString();
}