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