hexlify function

String hexlify(
  1. BigInt dec
)

Implementation

String hexlify(BigInt dec) {
  return '0x0${dec.toRadixString(16)}';
}