secp256K1FromSeed method

Future<Secp256k1IdentityExport> secp256K1FromSeed({
  1. required Secp256k1FromSeedReq req,
  2. dynamic hint,
})
override

secp256k1

Implementation

Future<Secp256k1IdentityExport> secp256K1FromSeed(
    {required Secp256k1FromSeedReq req, dynamic hint}) {
  var arg0 = _platform.api2wire_box_autoadd_secp_256_k_1_from_seed_req(req);
  return _platform.executeNormal(FlutterRustBridgeTask(
    callFfi: (port_) => _platform.inner.wire_secp256k1_from_seed(port_, arg0),
    parseSuccessData: _wire2api_secp_256_k_1_identity_export,
    parseErrorData: null,
    constMeta: kSecp256K1FromSeedConstMeta,
    argValues: [req],
    hint: hint,
  ));
}