internetReserve method
Future<(UResponse<UChargeInternetReserveResponse> ?, UEmptyResponse?, String?)>
internetReserve({
- required UInternetReserveParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UChargeInternetReserveResponse>?, UEmptyResponse?, String?)> internetReserve({
required UInternetReserveParams p,
Function(UResponse<UChargeInternetReserveResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/ChargeInternet/InternetReserve", p.toMap(), _Api.one(UChargeInternetReserveResponse.fromMap), _Api.empty, onOk, onError, onException);