bytesToHex static method

String bytesToHex(
  1. List<int> bytes, {
  2. bool include0x = false,
})

Implementation

static String bytesToHex(List<int> bytes, {bool include0x = false}) {
  return encode(Uint8List.fromList(bytes), prefix: include0x);
}