copyWithWrapped method
Implementation
SIPTrunkOutboundCallResponse copyWithWrapped(
{Wrapped<bool>? success,
Wrapped<String>? message,
Wrapped<dynamic>? conversationId,
Wrapped<dynamic>? sipCallId}) {
return SIPTrunkOutboundCallResponse(
success: (success != null ? success.value : this.success),
message: (message != null ? message.value : this.message),
conversationId: (conversationId != null
? conversationId.value
: this.conversationId),
sipCallId: (sipCallId != null ? sipCallId.value : this.sipCallId));
}