IssueRankRequestBean constructor

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

Implementation

IssueRankRequestBean(
    {List<String>? issues,
    this.rankBeforeIssue,
    this.rankAfterIssue,
    this.rankCustomFieldId})
    : issues = issues ?? [];