apiLogStats method

Future<(UResponse<UApiLogStatsResponse>?, UEmptyResponse?, String?)> apiLogStats({
  1. required UApiLogStatsParams p,
  2. dynamic onOk(
    1. UResponse<UApiLogStatsResponse> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. String e
    )?,
})

Implementation

Future<(UResponse<UApiLogStatsResponse>?, UEmptyResponse?, String?)> apiLogStats({
  required UApiLogStatsParams p,
  Function(UResponse<UApiLogStatsResponse> r)? onOk,
  Function(UEmptyResponse e)? onError,
  Function(String e)? onException,
}) => _Api.call("/dashboard/ApiLogStats", p.toMap(), _Api.one(UApiLogStatsResponse.fromMap), _Api.empty, onOk, onError, onException);