hexToBigInt function

BigInt hexToBigInt(
  1. String input
)

Implementation

BigInt hexToBigInt(String input) {
  return bytesToBigInt(hexDecode(input));
}