bytesToHex static method

String bytesToHex(
  1. Uint8List b
)

Bytes to Hex

Implementation

static String bytesToHex(Uint8List b) => b.map((e) => padhInt(e, 2)).join('');