FLUTTER ECOSYSTEM

stevenroose/dart-hex

使用 dart:convert API 轻松进行十六进制转换。

dart-hex 项目封面
Stars
19
Forks
7
最近推送(UTC)
2021年3月9日
项目状态
未归档
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
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 1 项
  • test开发依赖^1.16.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 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]
}