startChore function

void startChore(
  1. dynamic roller,
  2. dynamic aLog,
  3. dynamic xList,
  4. dynamic yChore,
  5. dynamic zSignal,
)

flow of chore might be like this... Functions to execute W O R K flow

Implementation

void startChore(var roller, var aLog, var xList, var yChore, var zSignal) {
  _flowCOuter('--> these are executed in beginning of W O R K  ', _pB);

  ///  ABLE: rollAble and signalAble are separate properties of chore.
  ///  roller(rollAble)   takes care of workFlow.
  ///  zSignal (signalAble)  makes log / list
  ///  yChore is actual  w o r k   code
}