hexToUint32 function

int hexToUint32(
  1. List<int> hexBuffer
)

Implementation

int hexToUint32(List<int> hexBuffer) {
  return int.parse(HEX.encode(hexBuffer), radix: 16).toUnsigned(32);
}