String uint8ListToBinaryString(Uint8List input) { return input.map((e) => e.toRadixString(2).padLeft(8, '0')).join(); }