commandHandler function

void commandHandler(
  1. dynamic thisCommand,
  2. dynamic thisOp,
  3. dynamic msg
)

PLAN: common method for "meddling" between different functions (maybe) TODO teamAdm not-ready, Untested.. ..use-cases for this ?

Implementation

void commandHandler(var thisCommand, var thisOp, var msg) {
  //  if (operation == ('print')) (thisList.forEach.print());
  //    else (thisList.add(operation));
  //  no lists in this class     thisList.add(operation);
  //  rendering actual commands / functions
  thisCommand;
  thisOp;
  print('---------------------------------  :  ' + msg);
}