Easy hexadecimal convertion using dart:convert API.
More...
Easy hexadecimal encoding and decoding using the dart:convert API.
A simple usage example:
import "package:hex/hex.dart"; void main() { HEX.encode(const [1, 2, 3]); // "010203" HEX.decode("010203"); // [1, 2, 3] }
unverified uploader
Repository (GitHub)View/report issues
API reference
MIT (license)
Packages that depend on hex
Back