report method

void report()

give report of scout statistics

Implementation

void report() {
  _flowC('  --<----<-  :scout:$name  scoutReport --<----<-', _pB);
  _flowC('  :scout:report :info: Report for to check data lists. >>', _pB);
  _flowC('  >>  :scout:report: ** Not needed when: scheduleBox.**.', _pB);
  List<String> _l = [];
  List<String> _l2 = [];
  _l.addAll(tl.bufToList(out.outTMid));
  for (var x = 0; x < _l.length; x++) {
    ///
    if (_l[x].indexOf(':scout:') > 0) {
      _l2.add(_l[x]);
    }
  }
}