copyWith method

ComponentIssuesCount copyWith({
  1. int? issueCount,
  2. String? self,
})

Implementation

ComponentIssuesCount copyWith({int? issueCount, String? self}) {
  return ComponentIssuesCount(
    issueCount: issueCount ?? this.issueCount,
    self: self ?? this.self,
  );
}