DeliveryBatchHeader constructor

DeliveryBatchHeader({
  1. DeliveryBatch? batch,
})

Implementation

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