outBuffersPrint function
To print outPutBuffers. // not called Using new outBufM Map devl:LIB 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');
}