init2 static method

Future<Sodium> init2(
  1. dynamic getLibsodium()
)

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

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

Unlike the init method, this one enables the use of Sodium.runIsolated. Use it preferably.

Implementation

static Future<Sodium> init2(dynamic Function() getLibsodium) =>
    throw UnsupportedError(
      'The current platform does support neither dart:ffi nor dart:js',
    );