uint8ListToInt function

int uint8ListToInt(
  1. Uint8List bytes
)

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;
}