getRecommendation method

List<String> getRecommendation(
  1. String caller
)

Constructing 6 items 15-20 wide list of HIGH VALUE-EFFORT

Implementation

List<String> getRecommendation(String caller) {
  print('-->>-->>--  getRecommendation in effort C: $caller  -->>-->>-- ');
  //  TODO  Add schema for Value-Effort high valuation. V:N - E:N >

  List<String> _getRecL = [];

  ///  Call function from shower-lib to get high-value items.
  ///  parameters in called method:  _inlM, int _c, int _w
  _getRecL.addAll(highValue(effortLM, 8, 9));
  //  calling:   highValue(effortLM, 15, 8);
  print('--<<--<<--  getRecommendation in effort done  --<<--<<-- ');
  return _getRecL;
}