tohex function

String tohex(
  1. num comp
)

Convert dec component to hex

Implementation

String tohex(num comp) => hexout(comp.toInt().toRadixString(16));