copyWithWrapped method

ConversationHistoryBatchCallModel copyWithWrapped({
  1. Wrapped<String>? batchCallId,
  2. Wrapped<String>? batchCallRecipientId,
})

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));
}