hexEncode function

String hexEncode(
  1. Uint8List input
)

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);