ObjectQuery constructor
ObjectQuery({
- ContinuationToken? continuation,
- AccountId? accountId,
- ObjectSentimentValue? sentiment,
- BoolValue? includeObjectsWithoutOwner,
- AccountUserId? owner,
- BoolValue? isBought,
- BoolValue? isForSale,
- bool? estimateTotalCount,
- BoolValue? isInDelivery,
- BoolValue? deleted,
- BoolValue? shipped,
Implementation
factory ObjectQuery({
$0.ContinuationToken? continuation,
$1.AccountId? accountId,
ObjectSentimentValue? sentiment,
$2.BoolValue? includeObjectsWithoutOwner,
$1.AccountUserId? owner,
$2.BoolValue? isBought,
$2.BoolValue? isForSale,
$core.bool? estimateTotalCount,
$2.BoolValue? isInDelivery,
$2.BoolValue? deleted,
$2.BoolValue? shipped,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (accountId != null) result.accountId = accountId;
if (sentiment != null) result.sentiment = sentiment;
if (includeObjectsWithoutOwner != null)
result.includeObjectsWithoutOwner = includeObjectsWithoutOwner;
if (owner != null) result.owner = owner;
if (isBought != null) result.isBought = isBought;
if (isForSale != null) result.isForSale = isForSale;
if (estimateTotalCount != null)
result.estimateTotalCount = estimateTotalCount;
if (isInDelivery != null) result.isInDelivery = isInDelivery;
if (deleted != null) result.deleted = deleted;
if (shipped != null) result.shipped = shipped;
return result;
}