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');
}
1
likes
110
pub points
60%
popularity

Publisher

unverified uploader

Dart implementation of the base62x codec

Homepage

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on base62x