copyWithWrapped method
Implementation
ConvAIStoredSecretDependencies copyWithWrapped(
{Wrapped<List<Object>>? tools,
Wrapped<List<Object>>? agentTools,
Wrapped<List<enums.SecretDependencyType>>? others,
Wrapped<List<DependentPhoneNumberIdentifier>?>? phoneNumbers}) {
return ConvAIStoredSecretDependencies(
tools: (tools != null ? tools.value : this.tools),
agentTools: (agentTools != null ? agentTools.value : this.agentTools),
others: (others != null ? others.value : this.others),
phoneNumbers:
(phoneNumbers != null ? phoneNumbers.value : this.phoneNumbers));
}