0 purchases
byte data wrapper
byte_data_wrapper #
A package to convert you byte data to int(Uint8, Uint16, Uint32, Uint64..)
Usage #
Add byte_data_wrapper to your pubspec.yamlfile.
Example:
import 'dart:typed_data';
import 'byte_data_wrapper/byte_data_wrapper.dart';
// Get the buffer.
final buffer = Uint16List.fromList(result).buffer;
// Create the byteDataCreator from buffer.
final byteDataCreator = ByteDataCreator.view(buffer);
// Get your data
int firstData = byteDataCreator.getUint8();
int secondData = byteDataCreator.getUint16();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.