orgUsersApiProvider top-level property
final
Implementation
final orgUsersApiProvider = FutureProvider<List<DealerUserDTO>>(
(ref) => ref
.watch(energyManagementV3ApiProvider.future)
.then((api) => api.kemApiV3DealerUsersGet())
.then(responseToValue),
);