hexToUint64 function

BigInt hexToUint64(
  1. List<int> hexBuffer
)

Implementation

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