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