orgUsersApiProvider top-level property

FutureProvider<List<DealerUserDTO>> orgUsersApiProvider
final

Implementation

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