wandriputra / dart-hex

Easy hexadecimal convertion using dart:convert API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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]
}

About

Easy hexadecimal convertion using dart:convert API.

License:MIT License


Languages

Language:Dart 100.0%