bytesasahexstring function

String bytesasahexstring(
  1. List<int> bytes
)

Implementation

String bytesasahexstring(List<int> bytes) {
    String s = '';
    for (int i in bytes) {
        String st = i.toRadixString(16);
        if (st.length == 1) { st = '0'+st; }
        s += st;
    }
    return s;
}