hexToAscii property
String
get
hexToAscii
Implementation
String get hexToAscii => List<String>.generate(
length ~/ 2,
(int i) => String.fromCharCode(
int.parse(substring(i * 2, (i * 2) + 2), radix: 16)),
).join();