errorsStackInfo property
String
get
errorsStackInfo
Implementation
String get errorsStackInfo {
if (errorsStack.isEmpty) {
return '';
}
final List<String> errorsAdditionalInfo = [];
final Set<HumanException> children = _collectEmbeddedErrors({});
int number = 2;
for (final HumanException child in children) {
errorsAdditionalInfo.add(child.fullInfo(number));
number++;
}
return errorsAdditionalInfo.join('\n');
}