Blurhash & Base83 encoding and decoding for dart using dart:convert interface.
Web Demo
Getting Started
In your pubspec.yaml
file add:
dependencies:
base83: any
Then, in your code import and use the package:
import 'package:base83/base83.dart';
final number = base83Decode('00DD');
print(number); // 1092
Libraries
- base83
- Base83 encoding and decoding for dart using dart:convert interface.