TronSigner.fromKeyBytes constructor
Factory method to create a TronSigner from a byte representation of a private key.
Implementation
factory TronSigner.fromKeyBytes(List<int> keyBytes) {
return TronSigner._(Secp256k1SigningKey.fromBytes(keyBytes: keyBytes));
}