bigIntegerToHex method

String bigIntegerToHex (BigInt val)

BigInt to hex string

Implementation

static String bigIntegerToHex(BigInt val) {
  return '0x' + val.toRadixString(16);
}