uint8ListToInt function
Decode byte array (4 bytes) into a integer @param {Uint8List} bytes Bytes array to decode
Implementation
int uint8ListToInt(Uint8List bytes) {
var value = 0;
for (var i = 0; i < bytes.length; i++) {
value = (value * 256) + bytes[i];
}
return value;
}