bytesToInt static method
Implementation
static int bytesToInt(Uint8List? bytes,
{Endianness endianness = Endianness.Big}) {
var stream = ByteStream(bytes!);
return stream.readInt(stream.length, endianness: endianness);
}
static int bytesToInt(Uint8List? bytes,
{Endianness endianness = Endianness.Big}) {
var stream = ByteStream(bytes!);
return stream.readInt(stream.length, endianness: endianness);
}