u8aToHex function

String u8aToHex(
  1. Uint8List u8a, {
  2. bool include0x = true,
})

Implementation

String u8aToHex(Uint8List u8a, {bool include0x = true}) {
  return bytesToHex(u8a, include0x: include0x);
}