copyWithWrapped method
Implementation
ConversationHistoryBatchCallModel copyWithWrapped(
{Wrapped<String>? batchCallId, Wrapped<String>? batchCallRecipientId}) {
return ConversationHistoryBatchCallModel(
batchCallId:
(batchCallId != null ? batchCallId.value : this.batchCallId),
batchCallRecipientId: (batchCallRecipientId != null
? batchCallRecipientId.value
: this.batchCallRecipientId));
}