toNoPrefixHex method
Convert to Hex String without prefix.
Example:
[0,1,2,3,4].toNoPrefixHex(); // "0001020304"
Implementation
String toNoPrefixHex() => hexEncode(toList());
Convert to Hex String without prefix.
Example:
[0,1,2,3,4].toNoPrefixHex(); // "0001020304"
String toNoPrefixHex() => hexEncode(toList());