errorAndStackTraces property
List<ErrorAndStackTrace>
get
errorAndStackTraces
Returns the emitted ErrorAndStackTraces. May be empty.
Implementation
List<ErrorAndStackTrace> get errorAndStackTraces =>
errors.zipWith<ErrorAndStackTrace, StackTrace?>(
stackTraces,
(e, s) => ErrorAndStackTrace(e, s),
growable: false,
);