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