updateConfig method
Dynamically updates the recitation tracker difficulty or timing at runtime.
Implementation
void updateConfig(TrackerConfig newConfig) {
config = newConfig;
_tokenProcessor.config = newConfig;
if (_isolateStarted) {
_alignmentIsolate.updateConfig(newConfig);
}
}