AddBalanceRequest constructor
AddBalanceRequest({})
Creates an instance of AddBalanceRequest.
customerId is the customer ID to add balance for.
paymentMethodId is the payment method ID to charge.
amount is the amount to add to the balance.
Implementation
AddBalanceRequest({
required this.customerId,
required this.paymentMethodId,
required this.amount,
});