homesApiProvider top-level property

AutoDisposeFutureProvider<List<HomeDTO>> homesApiProvider
final

Implementation

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