configureBusinessWallet method

PaymentsManager configureBusinessWallet(
  1. String? businessWallet
)

Configure your Business Wallet (this is the wallet address where customers will be paying you)

Implementation

PaymentsManager configureBusinessWallet(String? businessWallet) {
  this.businessWallet = businessWallet;

  return this;
}