getParticipantNames method
Implementation
Iterable<String> getParticipantNames(MeshDocument document) sync* {
for (final child in document.root.getChildren().whereType<MeshElement>()) {
if (child.tagName == "members") {
for (final member in child.getChildren().whereType<MeshElement>()) {
yield member.attributes["name"];
}
}
}
}