copyWith method

IssueRankRequestBean copyWith({
  1. List<String>? issues,
  2. String? rankBeforeIssue,
  3. String? rankAfterIssue,
  4. int? rankCustomFieldId,
})

Implementation

IssueRankRequestBean copyWith(
    {List<String>? issues,
    String? rankBeforeIssue,
    String? rankAfterIssue,
    int? rankCustomFieldId}) {
  return IssueRankRequestBean(
    issues: issues ?? this.issues,
    rankBeforeIssue: rankBeforeIssue ?? this.rankBeforeIssue,
    rankAfterIssue: rankAfterIssue ?? this.rankAfterIssue,
    rankCustomFieldId: rankCustomFieldId ?? this.rankCustomFieldId,
  );
}