copyWith method

ErrorCount copyWith({
  1. int? errorCount,
})

Implementation

ErrorCount copyWith({int? errorCount}) {
  return ErrorCount(errorCount: errorCount ?? this.errorCount);
}