toBase58 method

String toBase58()

Returns this Pubkey as a base-58 encoded string.

Implementation

String toBase58() {
  return base58.encode(toBytes());
}