hexToInt property

BigInt hexToInt

Takes the hexadecimal input and creates a BigInt.

Implementation

BigInt get hexToInt {
  return BigInt.parse(strip0x, radix: 16);
}