configureCustomerWallet method

PaymentsManager configureCustomerWallet(
  1. String recoveryWords
)

Configure the customer wallet that will be making the payment

Implementation

PaymentsManager configureCustomerWallet(String recoveryWords) {
  customerWallet =
      MnemonicKey(mnemonicKey: (_recoveryWords = recoveryWords)).accAddress();
  return this;
}