homesApiProvider top-level property
final
Implementation
final homesApiProvider = FutureProvider.autoDispose<List<HomeDTO>>(
(ref) => ref
.watch(energyManagementV3ApiProvider.future)
.then((api) => api.kemApiV3HomeownerHomesGet())
.then(responseToValue),
);