DeliveryBatchEntryId constructor

DeliveryBatchEntryId({
  1. DeliveryId? deliveryId,
  2. PickBinId? pickBinId,
})

Implementation

factory DeliveryBatchEntryId({
  $1.DeliveryId? deliveryId,
  $0.PickBinId? pickBinId,
}) {
  final result = create();
  if (deliveryId != null) result.deliveryId = deliveryId;
  if (pickBinId != null) result.pickBinId = pickBinId;
  return result;
}