dashboardUserGetPost method

Future<Response<DashboardUserGetResponse>> dashboardUserGetPost({
  1. required DashboardUserGetRequest? body,
})

Retrieve a dashboard user

Implementation

Future<chopper.Response<DashboardUserGetResponse>> dashboardUserGetPost(
    {required DashboardUserGetRequest? body}) {
  generatedMapping.putIfAbsent(DashboardUserGetResponse,
      () => DashboardUserGetResponse.fromJsonFactory);

  return _dashboardUserGetPost(body: body);
}