changeActiveEntities method Null safety

Future<bool> changeActiveEntities(
  1. dynamic entitiesId,
  2. {bool recursive = false}
)

Allow to change the active entity for the current user. entitiesId can either be the numerical id of the entity or all to load all the entities. recursive can be set to true to load all the sub-entities. Will throw an Exception if the request fails or if the selected id is incorrect. Reference: https://github.com/glpi-project/glpi/blob/master/apirest.md#change-active-entities

Implementation

Future<bool> changeActiveEntities(dynamic entitiesId,
    {bool recursive = false});