UIElementQuery constructor

UIElementQuery({
  1. ContinuationToken? continuation,
  2. 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;
}