outBuffersPrint function

void outBuffersPrint(
  1. String caller,
  2. String notCalled
)

To print outPutBuffers. // not called Using new outBufM Map TODO Make this show in proper screen areas with devBox.

Implementation

void outBuffersPrint(String caller, String notCalled) {
  print(' -->>-->>----  :DA:   out.outBuffers  by: $caller  -->>-->>-- ');
  int i = 0;
  int mLength = out.outBufM.length;
  for (var x = 0; x < mLength; x++) {
    String _bufNameS = out.outBufM.keys.elementAt(i);
    i++;
    print('\n * buf * * * * * * *    $_bufNameS   * * * * * * * * * *  ');
    print(out.outBufM[_bufNameS]); //  print
    print('* buf * * * * * * *    $_bufNameS   done  * * * * * * *  ');
  }

  print('     --<<--<<----  :DA:   out.outBuffers  C: $caller  done \n \n');
}