makeTempoM method

void makeTempoM()

Function for adding data to this List.

Implementation

void makeTempoM() {
  tempoM

    ///  Values: V: = Value, E: = effort, M: = mess,  D: = done.
    ..putIfAbsent('Largo     leveästi', () => 'V:3 E:2 D:0 ')
    ..putIfAbsent('Lento     hitaasti ', () => 'V:2 E:3 D:0 ')
    ..putIfAbsent('Grave     raskaasti ', () => 'V:4 E:4 D:0 ')
    ..putIfAbsent('Adagio    hitaasti ', () => 'V:8 E:5 D:0 ')
    ..putIfAbsent('Andante   käyden ', () => 'V:6 E:7 D:0 ')
    ..putIfAbsent('Allegro   nopeasti', () => 'V:7 E:8 D:0 ');
  //  tempoM.forEach(print);
  print(tempoM);
}