bigIntToHex static method

String bigIntToHex(
  1. BigInt num
)

number to 32b hex

Implementation

static String bigIntToHex(BigInt num) => bytesToHex(bigIntToBytes(num));