disable method
void
disable()
Turn off the spoiler effect: fade from 1→0, then stop the animation entirely.
Implementation
void disable() {
if (!_config.enableFadeAnimation) {
// If fade is disabled, just stop everything now.
_stopAll();
} else {
_fadeCtrl?.toggle().whenCompleteOrCancel(() => _stopAll());
}
}