initSet method
Implementation
void initSet({
required double marginSet,
required double fontSizeSet,
required bool again,
}) {
if (again) {
margin = marginSet;
fontSize = fontSizeSet;
globalKeys.clear();
pageCounts.clear();
for (final _ in textList) {
globalKeys.add(GlobalKey());
pageCounts.add(0);
}
}
_addHeightValue(globalKeys, margin.toInt());
}