decodeInt function

int decodeInt(
  1. List<int> bytes
)

Implementation

int decodeInt(List<int> bytes) {
  return bytesToInt(bytes, Endian.big, signed: true);
}