charge method
Future<(UEmptyResponse?, UEmptyResponse?, String?)>
charge({
- required UWalletChargeParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UEmptyResponse?, UEmptyResponse?, String?)> charge({
required UWalletChargeParams p,
Function(UEmptyResponse r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/wallet/Charge", p.toMap(), _Api.empty, _Api.empty, onOk, onError, onException);