getGroupDashboards method

Future<PageData<DashboardInfo>> getGroupDashboards(
  1. String entityGroupId,
  2. PageLink pageLink, {
  3. RequestConfig? requestConfig,
})

Implementation

Future<PageData<DashboardInfo>> getGroupDashboards(
    String entityGroupId, PageLink pageLink,
    {RequestConfig? requestConfig}) async {
  var response = await _tbClient.get<Map<String, dynamic>>(
      '/api/entityGroup/$entityGroupId/dashboards',
      queryParameters: pageLink.toQueryParameters(),
      options: defaultHttpOptionsFromConfig(requestConfig));
  return _tbClient.compute(parseDashboardInfoPageData, response.data!);
}