copyWithWrapped method

LinkTokenInvestments copyWithWrapped({
  1. Wrapped<bool?>? allowUnverifiedCryptoWallets,
})

Implementation

LinkTokenInvestments copyWithWrapped(
    {Wrapped<bool?>? allowUnverifiedCryptoWallets}) {
  return LinkTokenInvestments(
      allowUnverifiedCryptoWallets: (allowUnverifiedCryptoWallets != null
          ? allowUnverifiedCryptoWallets.value
          : this.allowUnverifiedCryptoWallets));
}