binary_stream 1.0.9
binary_stream: ^1.0.9 copied to clipboard
Binary Stream to transfer binary between a server and a client.
Binary Stream #
Binary Stream to transfer binary between a server and a client.
Features #
- Support multiple data types
Getting started #
dependencies:
binary_stream: ^1.0.9
Solving packages conflict #
Add this code end of pubspec.yaml.
dependency_overrides:
collection: your package version
vector_math: your package version
Usage #
void main() {
var binaryStream = BinaryStream();
binaryStream.writeInt32(1);
print('Int: ${binaryStream.readInt32()}');
}