Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 535 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 535 Bytes

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();