Uint8List hexToUint8List(String hexString) { final bytes = hex.decode(hexString); return Uint8List.fromList(bytes); }