build method
void
build()
Implementation
void build() {
// outBufM.put
outBufM.putIfAbsent('outHeaderBuf', () => outHeader);
outBufM.putIfAbsent('outTlBuf', () => outTl);
outBufM.putIfAbsent(
'outTMidBuf',
() => outTMid,
);
outBufM.putIfAbsent(
'outTrBuf',
() => outTr,
);
outBufM.putIfAbsent(
'outMTopBuf',
() => outMTop,
);
outBufM.putIfAbsent(
'outMidBuf',
() => outMid,
);
outBufM.putIfAbsent(
'outMBotBuf',
() => outMBot,
);
outBufM.putIfAbsent(
'outBlBuf',
() => outBl,
);
outBufM.putIfAbsent(
'outBrBuf',
() => outBr,
);
outBufM.putIfAbsent(
'outFooterBuf',
() => outFooter,
);
}