base62x 0.2.3 copy "base62x: ^0.2.3" to clipboard
base62x: ^0.2.3 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
250
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.11 - 2025.03.26

Dart implementation of the base62x codec

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on base62x