hexToBigInt static method

BigInt hexToBigInt(
  1. String hex
)

Implementation

static BigInt hexToBigInt(String hex) {
  return BigInt.parse(dw3_core.HexUtils.strip0x(hex), radix: 16);
}