keepIsolateAlive property
Whether this NativeCallable keeps its Isolate alive.
By default, NativeCallables keep the Isolate that created them alive
until close is called. If keepIsolateAlive is set to false, the
isolate may exit even if the NativeCallable isn't closed.
Note: IsolateGroupBound-callbacks are not associated with an Isolate, so won't keep an isolate alive. Attempts to set keepIsolateAlive to true, will throw.
Implementation
external bool get keepIsolateAlive;
Implementation
external set keepIsolateAlive(bool value);