hexToBigInt function

BigInt hexToBigInt(
  1. String hex
)

Implementation

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