init static method

Future<SodiumSumo> init(
  1. DynamicLibraryFactory getLibsodium
)

Creates a SodiumSumo instance for the loaded libsodium returned by the callback.

The getLibsodium parameter must be a factory method that returns a loaded sumo variant of [lib]sodium.[so|dll|dylib|a|lib|js]- depending on your platform. Please refer to the README for more details on loading the library.

Implementation

static Future<SodiumSumo> init(
  DynamicLibraryFactory getLibsodium,
) =>
    initFromSodiumFFI(
      () async => LibSodiumFFI(await getLibsodium()),
    );