dart_buffer 2.0.2 copy "dart_buffer: ^2.0.2" to clipboard
dart_buffer: ^2.0.2 copied to clipboard

Buffer Utils for Dart. BufferReader and BufferWriter classes.

example/dart_buffer_example.dart

import 'dart:typed_data';

import 'package:dart_buffer/dart_buffer.dart';

void main() {
  final buffer = ByteData(8);
  final writer = BufferWriter(buffer);
  final reader = BufferReader(buffer);

  writer.setInt32(50332161);

  print(reader.getUInt32());
}
1
likes
130
pub points
28%
popularity

Publisher

verified publishermahsumurebe.com

Buffer Utils for Dart. BufferReader and BufferWriter classes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

convert

More

Packages that depend on dart_buffer