pub unsafe extern "C" fn Dart_DeferredLoadCompleteError(
    loading_unit_id: isize,
    error_message: *const c_char,
    transient: bool
) -> Dart_Handle
Expand description

Notifies the VM that a deferred load failed. This function will eventually cause the corresponding prefix.loadLibrary() futures to complete with an error.

If transient is true, future invocations of prefix.loadLibrary() will trigger new load requests. If false, futures invocation will complete with the same error.

Requires the current isolate to be the same current isolate during the invocation of the Dart_DeferredLoadHandler.