customObjectString property

String customObjectString

Implementation

String get customObjectString {
  var text = '';

  customObjects.forEach((element) {
    if (text.isNotEmpty) {
      text += '\n\n';
    }
    var tempParent = parent;
    element.parent = null;
    text += element.structString;
    element.parent = tempParent;
  });
  return text;
}