pub unsafe extern "C" fn Dart_IsUnhandledExceptionError(
    handle: Dart_Handle
) -> bool
Expand description

Is this an unhandled exception error handle?

Unhandled exception error handles are produced when, during the execution of Dart code, an exception is thrown but not caught. This can occur in any function which triggers the execution of Dart code.

See Dart_ErrorGetException and Dart_ErrorGetStackTrace.

Requires there to be a current isolate.