Dart_GetVMServiceAssetsArchive typedef

Dart_GetVMServiceAssetsArchive = Pointer<NativeFunction<Handle Function()>>

Callback provided by the embedder that is used by the vmservice isolate to request the asset archive. The asset archive must be an uncompressed tar archive that is stored in a Uint8List.

If the embedder has no vmservice isolate assets, the callback can be NULL.

\return The embedder must return a handle to a Uint8List containing an uncompressed tar archive or null.

Implementation

typedef Dart_GetVMServiceAssetsArchive = ffi.Pointer<ffi.NativeFunction<ffi.Handle Function()>>;