v0.2.0
hex
Einfache hexadezimale Konvertierung mit der dart:convert-API.
38Likes 247.40030-Tage-Downloads130Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Einfache hexadezimale Konvertierung mit der dart:convert-API.
^1.16.0Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
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]
}