ClientQueryOptions constructor

ClientQueryOptions({
  1. bool? includeUncontrolled,
  2. ClientType? type,
})

Implementation

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