hexCharCodeToStr2 static method

String hexCharCodeToStr2(
  1. dynamic data
)

16进制的字符串转成字符串

Implementation

static String hexCharCodeToStr2(data) {
  return const convert.Utf8Decoder().convert(toUnitList(data));
}