UIElementQuery constructor
UIElementQuery({
- ContinuationToken? continuation,
- bool? onlyParentElements,
Implementation
factory UIElementQuery({
$1.ContinuationToken? continuation,
$core.bool? onlyParentElements,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (onlyParentElements != null)
result.onlyParentElements = onlyParentElements;
return result;
}