copyWith method

ConversationHistoryBatchCallModel copyWith({
  1. String? batchCallId,
  2. String? batchCallRecipientId,
})

Implementation

ConversationHistoryBatchCallModel copyWith(
    {String? batchCallId, String? batchCallRecipientId}) {
  return ConversationHistoryBatchCallModel(
      batchCallId: batchCallId ?? this.batchCallId,
      batchCallRecipientId:
          batchCallRecipientId ?? this.batchCallRecipientId);
}