isolateError method
Report the error in an isolate.
Implementation
void isolateError(dynamic ex, StackTrace stack) {
reportError(
ex,
stack,
message: 'while attempting to execute main()',
library: 'likely main.dart',
);
}
Report the error in an isolate.
void isolateError(dynamic ex, StackTrace stack) {
reportError(
ex,
stack,
message: 'while attempting to execute main()',
library: 'likely main.dart',
);
}