shareEntityGroupToChildOwnerUserGroup method

Future<void> shareEntityGroupToChildOwnerUserGroup(
  1. String entityGroupId,
  2. String userGroupId,
  3. String roleId, {
  4. RequestConfig? requestConfig,
})

Implementation

Future<void> shareEntityGroupToChildOwnerUserGroup(
    String entityGroupId, String userGroupId, String roleId,
    {RequestConfig? requestConfig}) async {
  await _tbClient.post<Map<String, dynamic>>(
      '/api/entityGroup/$entityGroupId/$userGroupId/$roleId/share',
      options: defaultHttpOptionsFromConfig(requestConfig));
}