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