Dart_ThreadStartCallback typedef

Dart_ThreadStartCallback = Pointer<NativeFunction<Void Function()>>

A thread start callback function. This callback, provided by the embedder, is called after a thread in the vm thread pool starts. This function could be used to adjust thread priority or attach native resources to the thread.

Implementation

typedef Dart_ThreadStartCallback = ffi.Pointer<ffi.NativeFunction<ffi.Void Function()>>;