bigIntToHex static method

String bigIntToHex(
  1. BigInt i
)

Converts a BigInt into a hex String

Implementation

static String bigIntToHex(BigInt i) {
  return "0x${i.toRadixString(16)}";
}