getMultipleDevicesStatus method

Future<List<StateManagerDevice>?> getMultipleDevicesStatus({
  1. List<String>? deviceIds,
})

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:

Implementation

Future<List<StateManagerDevice>?> getMultipleDevicesStatus({
  List<String>? deviceIds,
}) async {
  List<StateManagerDevice>? response =
      await LogbotStateManagerService.getMultipleDevices(deviceIds ?? []);
  return response;
}