bytesToInt static method

int bytesToInt(
  1. List<int> byteArray
)

Get byte array as an integer

Implementation

static int bytesToInt(List<int> byteArray) {
  return int.parse(PDUtil.byteToHex(byteArray), radix: 16);
}