DeliveryBatchEntryId constructor
DeliveryBatchEntryId({
- DeliveryId? deliveryId,
- 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;
}