loadLibrary static method
Load a native library by name, using platform-appropriate method.
This is exposed for backend modules to use if they want consistent platform handling, but modules can also implement their own loading.
Implementation
static DynamicLibrary loadLibrary(String libraryName) {
return _loadLibrary(libraryName);
}