hexlify static method
Convert List int to hex string
Implementation
static String hexlify(List<int> hexList){
String htb = '';
for(int i = 0; i < hexList.length; i++){
htb += hexList[i].toRadixString(16).padLeft(2,'0').toUpperCase();
}
return htb;
}