reportShort property

String get reportShort

Returns a formatted string with all reported errors (without stack traces).

Implementation

static String get reportShort {
  if (_errors.isEmpty) return 'No errors reported.';
  return _errors.map((e) => e.toString()).join('\n');
}