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