printStackTrace method
Prints the StackTrace to console.
Implementation
void printStackTrace([bool useErrorPrint = false]) {
if (useErrorPrint) {
stderr.write(this);
} else {
print(this);
}
}
Prints the StackTrace to console.
void printStackTrace([bool useErrorPrint = false]) {
if (useErrorPrint) {
stderr.write(this);
} else {
print(this);
}
}