hexToInt function

BigInt hexToInt(
  1. String input
)

Implementation

BigInt hexToInt(String input) {
  return BigInt.parse(input, radix: 16);
}