report method
Future<(UResponse<UAccountingReportResponse> ?, UEmptyResponse?, String?)>
report({
- required UAccountingReportParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UAccountingReportResponse>?, UEmptyResponse?, String?)> report({
required UAccountingReportParams p,
Function(UResponse<UAccountingReportResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/accounting/Report", p.toMap(), _Api.one(UAccountingReportResponse.fromMap), _Api.empty, onOk, onError, onException);