Open
Description
Use case
I'm trying to port the flutter_isolate
plugin to macOS. On iOS, it uses the -runWithEntrypoint:libraryURI:
function in FlutterEngine
to launch an isolate with an entrypoint inside the plugin's Dart code - but this function doesn't seem to exist on macOS. Only -runWithEntrypoint:
does, which can only launch isolates from the main library.
Futhermore, the FlutterCallbackCache
and FlutterCallbackInformation
classes seem to be missing, making it impossible to get information from a callback id.
Proposal
I'd like there to be a way on macOS to do what -runWithEntrypoint:libraryURI:
can do on iOS.