p256FromSeed method

Future<P256IdentityExport> p256FromSeed({
  1. required P256FromSeedReq req,
  2. dynamic hint,
})
override

secp256k1

Implementation

Future<P256IdentityExport> p256FromSeed(
    {required P256FromSeedReq req, dynamic hint}) {
  var arg0 = _platform.api2wire_box_autoadd_p_256_from_seed_req(req);
  return _platform.executeNormal(FlutterRustBridgeTask(
    callFfi: (port_) => _platform.inner.wire_p256_from_seed(port_, arg0),
    parseSuccessData: _wire2api_p_256_identity_export,
    parseErrorData: null,
    constMeta: kP256FromSeedConstMeta,
    argValues: [req],
    hint: hint,
  ));
}