copyWith method

ReorderIssueResolutionsRequest copyWith({
  1. String? after,
  2. List<String>? ids,
  3. String? position,
})

Implementation

ReorderIssueResolutionsRequest copyWith(
    {String? after, List<String>? ids, String? position}) {
  return ReorderIssueResolutionsRequest(
    after: after ?? this.after,
    ids: ids ?? this.ids,
    position: position ?? this.position,
  );
}