copyWithWrapped method
Implementation
LinkDeliveryCreateRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? linkToken,
Wrapped<enums.LinkDeliveryDeliveryMethod>? deliveryMethod,
Wrapped<String>? deliveryDestination}) {
return LinkDeliveryCreateRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
linkToken: (linkToken != null ? linkToken.value : this.linkToken),
deliveryMethod: (deliveryMethod != null
? deliveryMethod.value
: this.deliveryMethod),
deliveryDestination: (deliveryDestination != null
? deliveryDestination.value
: this.deliveryDestination));
}