startAutoRefresh method
Start periodic background refresh.
Implementation
void startAutoRefresh([Duration? interval]) {
stopAutoRefresh();
final dur = interval ?? config.refreshInterval;
_refreshTimer = Timer.periodic(dur, (_) => fetchSettings(force: true));
}