Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 308 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 308 Bytes

bytes_io

A python-like bytes_io implementation for dart A powerful helper for processing raw binary data

Usage

A simple usage example:

import 'package:bytes_io/bytes_io.dart';

main() {
  var reader = BytesReader([your_byte_buffer]);
  reader.readByte();
}

docs are in doc comments!