DeliveryBatchHeader constructor
DeliveryBatchHeader({
- DeliveryBatch? batch,
Implementation
factory DeliveryBatchHeader({
DeliveryBatch? batch,
}) {
final result = create();
if (batch != null) result.batch = batch;
return result;
}