estimatedDeliveryCount property

int get estimatedDeliveryCount

Implementation

int get estimatedDeliveryCount {
  var count = 0;
  if (willDeliverExports) count += runCount;
  if (willDeliverArchive) count += 1;
  return count;
}