DynamicLibrary class Null safety
Represents a dynamically loaded C library.
- Available Extensions
Constructors
- DynamicLibrary.executable()
-
Creates a dynamic library representing the running executable.
factory
- DynamicLibrary.open(String name)
-
Loads a dynamic library file with local visibility. [...]
factory
- DynamicLibrary.process()
-
Creates a dynamic library holding all global symbols. [...]
factory
Properties
Methods
-
lookup<
T extends NativeType> (String symbolName) → Pointer< T> - Looks up a symbol in the DynamicLibrary and returns its address in memory. Equivalent of dlsym. [...]
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
Dynamic libraries are equal if they load the same library.
override