copyWith method

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

Implementation

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