byter 0.0.3 
byter: ^0.0.3 copied to clipboard
Efficiently and Easy handle fixed sized byte data for example, unsigned 8 byte integers types.
A Byter library for Dart developers.
Created from templates made available by Stagehand under a BSD-style license.
Usage #
This package used to byte data, in flutter also work.
Tested #
- byte;
 - eat;eatAl;
 - add;addAl;
 - toHexString;
 - toString;
 - if you need other contact with Email.
 
A simple usage example:
import 'package:byter/byter.dart';
main() {
  //Change your printer ip
  var byter=Byter('hello-world'.codeUnits);
  print(byter);
  byter.byte();
  byter.byte();
  print(byter);
  byter.eat(Byter('He'.codeUnits));
  print(utf8.decode(byter.all));
  
}
References #
....