export method
- required String keyId,
Exports a keyshare from the MPC to ECDSA private key. (Only trio)
returns the private key in hex format.
Implementation
Future<String> export({
required String keyId,
}) {
return _ecdsaExportSession.export(keyId: keyId);
}