bigIntToHex function

String bigIntToHex(
  1. BigInt i
)

Implementation

String bigIntToHex(BigInt i) {
  return i.toRadixString(16);
}