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