listShow method

void listShow(
  1. List _l,
  2. String caller
)

Method for informative list-printing.

Implementation

void listShow(List _l, String caller) {
  String l = _l.length.toString();
  print('\n       :ls:-->-->  caller:: $caller  length:: $l   -->-->--');
  _l.forEach(print);
  print('      --:ls:--<<--<<--<<    done    --<<--<<--<<--<< \n');
}