makePlanM method

void makePlanM()

adding data to List

Implementation

void makePlanM() {
  planM

    ///  Values: V: = Value, E: = effort, M: = mess,  D: = done.
    ..putIfAbsent('Plain idea', () => 'V:3 E:3 D:6 ')
    ..putIfAbsent('Accepted schema', () => 'V:5 E:1 D:3 ')
    ..putIfAbsent('W o r k scheduled', () => 'V:3 E:6 D:0 ')
    ..putIfAbsent('W o r k started', () => 'V:3 E:2 D:1 ');
  //  planM.forEach(print);
  print(planM);
}