getMultipleDevicesStatus method
List the status of many devices and their services
List many devices and their status, for each device all its services and their status
Parameters:
- List<String> requestBody:
Implementation
Future<List<StateManagerDevice>?> getMultipleDevicesStatus({
List<String>? deviceIds,
}) async {
List<StateManagerDevice>? response =
await LogbotStateManagerService.getMultipleDevices(deviceIds ?? []);
return response;
}