base62x 0.2.2 copy "base62x: ^0.2.2" to clipboard
base62x: ^0.2.2 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.decode('helloxdworldx');

  print('encode result ==> $encodeStr');
  print('decode result ==> $decodeStr');
}
copied to clipboard
1
likes
130
points
145
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.20 - 2025.04.04

Dart implementation of the base62x codec

Homepage

Documentation

API reference

License

MIT (license)

More

Packages that depend on base62x