initialize static method

void initialize(
  1. String libraryPath
)

Initializes the Argos Translate library with the specified DLL path.

This method must be called before using any translation functionality.

libraryPath - The path to the Argos Translate DLL file.

Implementation

static void initialize(String libraryPath) async {
  _bindings = ArgosBindings(libraryPath);
}