ClientQueryOptions constructor
ClientQueryOptions({
- bool? includeUncontrolled,
- ClientType? type,
Implementation
factory ClientQueryOptions({bool? includeUncontrolled, ClientType? type}) =>
ClientQueryOptions._(
includeUncontrolled: includeUncontrolled ?? false,
type: type?.value ?? ClientType.window.value);