toSuiPublicKey method
Return the Sui representation of the public key encoded in base-64. A Sui public key is formed by the concatenation of the scheme flag with the raw bytes of the public key
Implementation
String toSuiPublicKey() {
return base64Encode(toSuiBytes());
}