chargeCustomer method

Future<PaymentsResponse> chargeCustomer(
  1. double luna
)

Returns a Tx hash of the payment transaction if successful, and internally manages burn tax for successful gas fees

Implementation

Future<PaymentsResponse> chargeCustomer(double luna) async {
  return PaymentsHelper.runTransactionForPayment(
      luna, _recoveryWords!, businessWallet!,
      env: _env!);
}