copyWithWrapped method

ErrorCount copyWithWrapped({
  1. Wrapped<int?>? errorCount,
})

Implementation

ErrorCount copyWithWrapped({Wrapped<int?>? errorCount}) {
  return ErrorCount(
      errorCount: (errorCount != null ? errorCount.value : this.errorCount));
}