init method
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;
}
}