Trace.parseFirefox constructor
Parses a string representation of a Firefox stack trace.
Implementation
Trace.parseFirefox(String trace)
: this(
trace
.trim()
.split("\n")
.where((line) => line.isNotEmpty && line != '[native code]')
.map((line) => new Frame.parseFirefox(line)),
original: trace);