FacetCountsInternal constructor
FacetCountsInternal({})
Implementation
factory FacetCountsInternal({
$core.String? collectionName,
$core.String? key,
$4.Filter? filter,
$fixnum.Int64? limit,
$core.bool? exact,
$core.int? shardId,
$fixnum.Int64? timeout,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (key != null) {
$result.key = key;
}
if (filter != null) {
$result.filter = filter;
}
if (limit != null) {
$result.limit = limit;
}
if (exact != null) {
$result.exact = exact;
}
if (shardId != null) {
$result.shardId = shardId;
}
if (timeout != null) {
$result.timeout = timeout;
}
return $result;
}