OrderQuery constructor
OrderQuery({
- ContinuationToken? continuation,
- AccountId? accountId,
- DeliveryId? deliveryId,
Implementation
factory OrderQuery({
$5.ContinuationToken? continuation,
$0.AccountId? accountId,
$0.DeliveryId? deliveryId,
}) {
final result = create();
if (continuation != null) result.continuation = continuation;
if (accountId != null) result.accountId = accountId;
if (deliveryId != null) result.deliveryId = deliveryId;
return result;
}