setEnableBackgroundPlayback method

void setEnableBackgroundPlayback(
  1. bool value
)

Implementation

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