FLUTTER ECOSYSTEM

stevenroose/dart-hex

Easy hexadecimal convertion using dart:convert API.

dart-hex project cover
Stars
19
Forks
7
Last push (UTC)
Mar 9, 2021
Project status
Active
Steven Roose GitHub avatar
GITHUB User

Steven Roose ↗

"We publish our code so that our fellow Cypherpunks may practice and play with it. Our code is free for all to use, worldwide." - A Cypherpunk's Manifesto

second.techPortugal
LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 1 items
  • testDevelopment^1.16.0

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

dart-hex

Easy hexadecimal encoding and decoding using the dart:convert API.

Usage

A simple usage example:

import "package:hex/hex.dart";

void main() {
  HEX.encode(const [1, 2, 3]); // "010203"
  HEX.decode("010203"); // [1, 2, 3]
}