setAutoplayNext method
- bool value
Implementation
void setAutoplayNext(bool value) {
state = state.copyWith(autoplayNext: value);
final prefs = ref.read(sharedPreferencesProvider);
prefs.setBool(_autoplayNextKey, value);
}
void setAutoplayNext(bool value) {
state = state.copyWith(autoplayNext: value);
final prefs = ref.read(sharedPreferencesProvider);
prefs.setBool(_autoplayNextKey, value);
}