copyWithWrapped method
Implementation
GetKnowledgeBaseListResponseModel copyWithWrapped(
{Wrapped<List<Object>>? documents,
Wrapped<dynamic>? nextCursor,
Wrapped<bool>? hasMore}) {
return GetKnowledgeBaseListResponseModel(
documents: (documents != null ? documents.value : this.documents),
nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
hasMore: (hasMore != null ? hasMore.value : this.hasMore));
}