OrderQuery constructor

OrderQuery({
  1. ContinuationToken? continuation,
  2. AccountId? accountId,
  3. 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;
}