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