copyWith method

RAGIndexResponseModel copyWith({
  1. RAGIndexStatus? status,
  2. double? progressPercentage,
})

Implementation

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