SuiSecp256k1PrivateKey.fromBytes constructor
Creates an instance from raw private key bytes.
Implementation
factory SuiSecp256k1PrivateKey.fromBytes(List<int> keyBytes) {
return SuiSecp256k1PrivateKey._(
Secp256k1PrivateKeyEcdsa.fromBytes(keyBytes));
}