reportList method

List<String> reportList(
  1. String caller
)

Report of chore.

Implementation

List<String> reportList(String caller) {
  String rowInfoS = rowInfo();
  String _s1 = '** __________________ choreReport _______________________';
  String _s2 = '** Name:  $name     C:  $caller';
  String _s3 = '** $info';
  String _s4 = '** $motto';
  String _s5 = '** Master:   $master  Emblem: $emblem';
  String _s6 = '** st: $st.toString';
  String _s7 = '** $rowInfoS';
  String _s8 = '** ';
  String _s9 = '** ';
  String _s10 = '** ______________________________________________________';

  ///  fix2.0.0
  List<String> _l = [_s1, _s2, _s3, _s4, _s5, _s6, _s7, _s8, _s9, _s10];
  buf.writeln(':ch:buf: :report: done for chore:  $name  ');
  return _l;
}