makeGoalM method

void makeGoalM()

testing... difference between . and ..

Implementation

void makeGoalM() {
  ///  Values: V: = Value, E: = effort, M: = mess,  D: = done.
  goalM
    ..putIfAbsent('Project 0.0.1 Plan', () => 'V:3 E:2 D:1 ')
    ..putIfAbsent('Github  clean', () => 'V:3 E:5 D:3 ')
    ..putIfAbsent('HTML  Pages', () => 'V:6 E:7 D:2 ')
    ..putIfAbsent('TO-DOs check', () => 'V:3 E:2 D:2 ');
  //  goalM.forEach(print);  //  want it in one row:
  print(goalM);
}