copyWith method

ProjectInsight copyWith({
  1. DateTime? lastIssueUpdateTime,
  2. int? totalIssueCount,
})

Implementation

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