schnorrFromSeed method

Future<SchnorrIdentityExport> schnorrFromSeed({
  1. required SchnorrFromSeedReq req,
  2. dynamic hint,
})
override

schnorr

Implementation

Future<SchnorrIdentityExport> schnorrFromSeed(
    {required SchnorrFromSeedReq req, dynamic hint}) {
  var arg0 = _platform.api2wire_box_autoadd_schnorr_from_seed_req(req);
  return _platform.executeNormal(FlutterRustBridgeTask(
    callFfi: (port_) => _platform.inner.wire_schnorr_from_seed(port_, arg0),
    parseSuccessData: _wire2api_schnorr_identity_export,
    parseErrorData: null,
    constMeta: kSchnorrFromSeedConstMeta,
    argValues: [req],
    hint: hint,
  ));
}