fromPersonalSignature static method
Implementation
static TronPublicKey fromPersonalSignature(
List<int> messageDigest, String signature,
{bool hashMessage = true,
int? payloadLength,
bool useEthereumPrefix = false}) {
final publicKey = TronVerifier.getPublicKey(
messageDigest, BytesUtils.fromHexString(signature),
hashMessage: hashMessage,
payloadLength: payloadLength,
useEthPrefix: useEthereumPrefix);
final pubKey = Secp256k1PublicKeyEcdsa.fromBytes(publicKey.point.toBytes());
return TronPublicKey._(pubKey);
}