setDdsFile static method

Future<void> setDdsFile(
  1. String path
)

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");
}