copyWith method

ExportArchivedIssuesTaskProgressResponse copyWith({
  1. String? fileUrl,
  2. String? payload,
  3. int? progress,
  4. String? status,
  5. DateTime? submittedTime,
  6. String? taskId,
})

Implementation

ExportArchivedIssuesTaskProgressResponse copyWith(
    {String? fileUrl,
    String? payload,
    int? progress,
    String? status,
    DateTime? submittedTime,
    String? taskId}) {
  return ExportArchivedIssuesTaskProgressResponse(
    fileUrl: fileUrl ?? this.fileUrl,
    payload: payload ?? this.payload,
    progress: progress ?? this.progress,
    status: status ?? this.status,
    submittedTime: submittedTime ?? this.submittedTime,
    taskId: taskId ?? this.taskId,
  );
}