encodePubKey static method

String encodePubKey(
  1. String pubkey
)

Encode a public key as npub

Implementation

static String encodePubKey(String pubkey) {
  return _encodeKey(Hrps.kPublicKey, pubkey);
}