copyWith method
Implementation
RAGIndexResponseModel copyWith(
{enums.RAGIndexStatus? status, double? progressPercentage}) {
return RAGIndexResponseModel(
status: status ?? this.status,
progressPercentage: progressPercentage ?? this.progressPercentage);
}