base62x 0.2.3 copy "base62x: ^0.2.3" to clipboard
base62x: ^0.2.3 copied to clipboard

Dart implementation of the base62x codec

dart-base62x #

Base62x is an non-symbolic Base64 encoding scheme. It can be used safely in computer file systems, programming languages for data exchange, internet communication systems, etc, and it is an ideal substitute and successor of many variants of Base64 encoding scheme.

This dart implementation was inspired by wadelau's polyglot Base62x repository.

Pub Package

Installation #

flutter pub add base62x
copied to clipboard

Usage #

import 'package:base62x/base62x.dart';

final encodeStr = Base62x.encode('hello,world'); // helloxdworldx
final decodeStr = Base62x.decode('helloxdworldx'); // hello,world
copied to clipboard

Api #

Base62x.encode(String input) -> String

Base62x.decode(String input) -> String

1
likes
130
points
283
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.08 - 2025.03.23

Dart implementation of the base62x codec

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on base62x