fromHex static method

BigInt fromHex(
  1. String hex
)

Implementation

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