hexEncode function

String hexEncode(
  1. List<int> input
)

Convert to Hex String without prefix.

Example:

hexEncode([1,2,3,4]); // 01020304
hexEncode([0,1,2,3,10]); // 000102030a

Implementation

String hexEncode(List<int> input) => hex.encode(input);