copyWith method
Implementation
ProjectInsight copyWith(
{DateTime? lastIssueUpdateTime, int? totalIssueCount}) {
return ProjectInsight(
lastIssueUpdateTime: lastIssueUpdateTime ?? this.lastIssueUpdateTime,
totalIssueCount: totalIssueCount ?? this.totalIssueCount,
);
}