copyWith method
Public method or function.
Implementation
ScoreWeights copyWith({int? critical, int? error, int? warning, int? info}) {
return ScoreWeights(
critical: critical ?? this.critical,
error: error ?? this.error,
warning: warning ?? this.warning,
info: info ?? this.info,
);
}