listNotes method

void listNotes(
  1. String caller
)

Old-fashioned list print method.

Implementation

void listNotes(String caller) {
  print('\n ------->>-->>--  dev.listNotes  by: $caller ------->>-->>--   ');
  dev.howToN.add('dev-Show-Notes:  How to add 8-indent in show?  ');
  dev.secN.add('dev-Show-Notes:  howTo keep some notes secret?  Sec? ');
  admN.forEach(print);
  print(' ');
  devN.forEach(print);
  print(' ');
  innoN.forEach(print);
  print(' ');
  howToN.forEach(print);
  print(' ');
  secN.forEach(print);
  print('--<<--<<------------  dev.listNotes  --<<--<<------------ \n ');
}