startSection method
Implementation
void startSection(AFID id, { bool resetSection = false }) {
currentSection = id;
var current = sectionErrors[currentSection];
final curSect = currentSection;
if(curSect != null && (current == null || resetSection)) {
current = AFTestErrors(currentSection);
sectionErrors[curSect] = current;
}
}