resolveDesktopSelectedDeviceId static method
Implementation
@visibleForTesting
static String? resolveDesktopSelectedDeviceId({
String? pendingDeviceId,
String? engineDeviceId,
}) {
if (pendingDeviceId != null && pendingDeviceId.isNotEmpty) {
return pendingDeviceId;
}
return engineDeviceId;
}