String bytesToBinary(Uint8List bytes) { return bytes.map((byte) => byte.toRadixString(2).padLeft(8, '0')).join(''); }