copyWithWrapped method
Implementation
LinkTokenCreateRequestUpdate copyWithWrapped(
{Wrapped<bool?>? accountSelectionEnabled}) {
return LinkTokenCreateRequestUpdate(
accountSelectionEnabled: (accountSelectionEnabled != null
? accountSelectionEnabled.value
: this.accountSelectionEnabled));
}