copyWith method
Implementation
GetKnowledgeBaseListResponseModel copyWith(
{List<Object>? documents, dynamic nextCursor, bool? hasMore}) {
return GetKnowledgeBaseListResponseModel(
documents: documents ?? this.documents,
nextCursor: nextCursor ?? this.nextCursor,
hasMore: hasMore ?? this.hasMore);
}