setDdsFile static method
Implementation
static Future<void> setDdsFile(String path) {
final String normalized = path.trim();
if (normalized.isEmpty) {
throw const XrBackgroundCommandException(
"DDS file path is empty.",
);
}
return _send("dds|$normalized");
}