toCleanHex static method

String toCleanHex(
  1. List<int> bytes
)

Implementation

static String toCleanHex(List<int> bytes) {
  var hex = utf8.decode(bytes).replaceAll("-", "").toLowerCase();

  return hex;
}