Counts.copyFrom constructor

Counts.copyFrom(
  1. Counts counts
)

Implementation

Counts.copyFrom(Counts counts) {
  success = counts.success;
  errors = counts.errors;
  _skipped = counts._skipped;
}