toBase32 method

String toBase32()

Encodes the string to Base32 format. This method encodes the string directly to Base32.

Implementation

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