v0.2.0
hex
使用 dart:convert API 輕鬆進行十六進制轉換。
38喜歡 24.7萬近 30 天下載130Pub 分數
AndroidiOSWebmacOSWindowsLinux
使用 dart:convert API 輕鬆進行十六進制轉換。
^1.16.0以下為英文專案原文快照,最新內容請造訪 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]
}