onErrorReport method
If there's a error reporting routine available.
Implementation
Future<void> onErrorReport(Object exception, StackTrace stack) async {
if (inErrorReport != null) {
await inErrorReport!(exception, stack);
}
}
If there's a error reporting routine available.
Future<void> onErrorReport(Object exception, StackTrace stack) async {
if (inErrorReport != null) {
await inErrorReport!(exception, stack);
}
}