readFinancialOpsDashboard method

Future<(UResponse<UFinancialOpsDashboardResponse>?, UEmptyResponse?, String?)> readFinancialOpsDashboard({
  1. required UDashboardRangeParams p,
  2. dynamic onOk(
    1. UResponse<UFinancialOpsDashboardResponse> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. 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);