setEnableBackgroundPlayback method
- bool value
Implementation
void setEnableBackgroundPlayback(bool value) {
state = state.copyWith(enableBackgroundPlayback: value);
final prefs = ref.read(sharedPreferencesProvider);
prefs.setBool(_enableBackgroundPlaybackKey, value);
}