hexEncode function
Hex (Base-16) Codec
Encodes input
to a hexadecimal string.
Implementation
// /// A hexadecimal codec.
// const hex = Base16Codec();
/// Encodes [input] to a hexadecimal string.
String hexEncode(final Uint8List input) => hex.encode(input);