readFinancialOpsDashboard method
Future<(UResponse<UFinancialOpsDashboardResponse> ?, UEmptyResponse?, String?)>
readFinancialOpsDashboard({
- required UDashboardRangeParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UFinancialOpsDashboardResponse>?, UEmptyResponse?, String?)> readFinancialOpsDashboard({
required UDashboardRangeParams p,
Function(UResponse<UFinancialOpsDashboardResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/dashboard/ReadFinancialOpsDashboard", p.toMap(), _Api.one(UFinancialOpsDashboardResponse.fromMap), _Api.empty, onOk, onError, onException);