in lib/src/stack_zone_specification.dart [236:240]
5 lines of code
2 McCabe index (conditional complexity)
String _trimVMChain(StackTrace trace) {
var text = trace.toString();
var index = text.indexOf(vmChainGap);
return index == -1 ? text : text.substring(0, index);
}