copyWithWrapped method

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

Implementation

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