copyWith method
Implementation
ConversationHistorySIPTrunkingPhoneCallModel copyWith(
{enums.ConversationHistorySIPTrunkingPhoneCallModelDirection? direction,
String? phoneNumberId,
String? agentNumber,
String? externalNumber,
String? type,
String? callSid}) {
return ConversationHistorySIPTrunkingPhoneCallModel(
direction: direction ?? this.direction,
phoneNumberId: phoneNumberId ?? this.phoneNumberId,
agentNumber: agentNumber ?? this.agentNumber,
externalNumber: externalNumber ?? this.externalNumber,
type: type ?? this.type,
callSid: callSid ?? this.callSid);
}