copyWith method

LinkTokenInvestments copyWith({
  1. bool? allowUnverifiedCryptoWallets,
})

Implementation

LinkTokenInvestments copyWith({bool? allowUnverifiedCryptoWallets}) {
  return LinkTokenInvestments(
      allowUnverifiedCryptoWallets:
          allowUnverifiedCryptoWallets ?? this.allowUnverifiedCryptoWallets);
}