intToHex function

String intToHex(
  1. BigInt? input
)

Implementation

String intToHex(BigInt? input) {
  return input!.toRadixString(16);
}