maintenanceNotesApiFamily top-level property
final
Implementation
final maintenanceNotesApiFamily =
FutureProvider.family<List<MaintenanceNoteDTO>, int>(
(ref, int id) => ref
.watch(energyManagementV3ApiProvider.future)
.then(
(api) => api.kemApiV3DevicesIdMaintenanceNotesGet(id: id),
)
.then(responseToValue),
);