deviceDetailsApiFamily top-level property
final
Implementation
final deviceDetailsApiFamily = FutureProvider.family<DeviceDetailsDTO, int>(
(ref, int id) => ref
.watch(energyManagementV3ApiProvider.future)
.then(
(api) => api.kemApiV3DevicesIdGet(id: id),
)
.then(responseToValue),
);