hexToStr method

String hexToStr(
  1. List<int> d
)

Implementation

String hexToStr(List<int> d) {
var encoded = hex.encode(d);
return encoded;
}