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