toBase32 method

String toBase32()

Encodes the string to Base32 format.

This method encodes the string directly to Base32.

Returns a String representing the Base32 encoded version of the original string.

Implementation

String toBase32() {
  return base32.encodeString(this);
}