byter 0.0.2
byter: ^0.0.2 copied to clipboard
Efficiently and Easy handle fixed sized byte data for example, unsigned 8 byte integers types.
example/example.dart
import 'dart:convert';
import 'package:byter/byter.dart';
Future<void> main() async {
var byter=Byter('hello-world'.codeUnits);
print(byter);
byter.byte();
byter.byte();
print(byter);
byter.nyte();
byter.nyte();
print(byter);
print(byter.str());
}