copyWith method

GetKnowledgeBaseListResponseModel copyWith({
  1. List<Object>? documents,
  2. dynamic nextCursor,
  3. bool? hasMore,
})

Implementation

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