makePhaseM method

void makePhaseM()

adding data to List

Implementation

void makePhaseM() {
  phaseM
    ..putIfAbsent('PhaseUnknown', () => 'V:0 trying E:3 D:0 ')
    ..putIfAbsent('PhaseGetInfo', () => 'V:2 E:8 some D:5 ')
    ..putIfAbsent('PhaseMakePlan', () => 'V:7 test E:7 D:0 ')
    ..putIfAbsent('phaseMtart', () => 'V:8 Substring E:8 D:0 ')
    ..putIfAbsent('PhaseInSt', () => 'V:3 E:6 should D:0 ')
    ..putIfAbsent('PhaseDone', () => 'V:9 work here E:8 well  D:7 ');
  //  phaseM.forEach(print);
  print(phaseM);
}