ecdh_plugin
ECDH key generation plugin
Getting Started
To get the ECDH keys use below function
first step: call ECDH plugin
final _ecdhPlugin = EcdhPlugin();
Second step: write function for get key
getKeys() async { var value = await _ecdhPlugin.getECDHKey(); setState(() { _publicKeyHex = value.publicKey!; _privateKeyHex = value.privateKey!; }); }