base83 library
Base83 encoding and decoding for dart using dart:convert interface.
Classes
- Base83
- Contains methods to encode or decode integers to Base83-Strings.
- Base83Decoder
- Decodes a String of Base83-characters into the integral value it represents.
- Base83Encoder
- Encodes a number into its Base83-representation
- Blurhash
- Encoder class for the blur hash.
Functions
-
base83(
int length) → Base83 - Created a Base83 instance.
-
base83Decode(
String input) → int - Decodes a String to int.
-
base83Encode(
int input, int length) → String - Encodes an int to String.