devMsg method

dynamic devMsg(
  1. String unit,
  2. String whoDoneThis
)

NOTE: team-team developers can send messages to each others in test printings Simple message to track run and development

Implementation

devMsg(String unit, String whoDoneThis) {
  if (dev.devTestPhase) {
    DateTime now = DateTime.now();
    String _s30 = '                              ';
    print('$_s30  Developers message -----------------------------------');
    print('$_s30  Testing:  $unit Tester:  $whoDoneThis  ');
    print('$_s30  dev msg over:    Time: $now ');
    print('');
  }
}