copyWith method
Implementation
SIPTrunkOutboundCallResponse copyWith(
{bool? success,
String? message,
dynamic conversationId,
dynamic sipCallId}) {
return SIPTrunkOutboundCallResponse(
success: success ?? this.success,
message: message ?? this.message,
conversationId: conversationId ?? this.conversationId,
sipCallId: sipCallId ?? this.sipCallId);
}