billInfo method
Future<(UResponse<UBillInfoResponse> ?, UEmptyResponse?, String?)>
billInfo({
- required UBillInfoParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UBillInfoResponse>?, UEmptyResponse?, String?)> billInfo({
required UBillInfoParams p,
Function(UResponse<UBillInfoResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/inquiry/BillInfo", p.toMap(), _Api.one(UBillInfoResponse.fromMap), _Api.empty, onOk, onError, onException);