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