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