init method

Future<void> init()

Initialize the schnorr before using core functionalities, recommeneded to use it before any usage of EdDSA.

Implementation

Future<void> init() async {
  if (!_initialized) {
    await schnorr.schnorrSdkInit();
    _initialized = true;
  }
}