base62x 0.2.1
base62x: ^0.2.1 copied to clipboard
Dart implementation of the base62x codec.".
example/example.dart
import 'package:base62x/base62x.dart';
void main() {
final encodeStr = Base62x.encode('hello,world');
final decodeStr = Base62x.encode('helloxdworldx');
print('encode result ==> $encodeStr');
print('decode result ==> $decodeStr');
}
copied to clipboard