customObjectString property
String
get
customObjectString
Implementation
String get customObjectString {
var text = '';
for (var element in customObjects) {
if (text.isNotEmpty) {
text += '\n\n';
}
var tempParent = parent;
element.parent = null;
text += element.structString;
element.parent = tempParent;
}
return text;
}