FLUTTER ECOSYSTEM

stevenroose/dart-hex

Conversão hexadecimal fácil usando a API dart:convert.

Capa do projeto dart-hex
Stars
19
Forks
7
Último push (UTC)
9 de mar. de 2021
Status do projeto
Ativo
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
LinguagensDart

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 1 itens
  • testDesenvolvimento^1.16.0

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher 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]
}