favoriteParametersProvider top-level property

StateNotifierProvider<PreferenceNotifier<List<int>>, List<int>> favoriteParametersProvider
final

Implementation

final favoriteParametersProvider =
    StateNotifierProvider<PreferenceNotifier<List<int>>, List<int>>(
  (ref) => PreferenceNotifier.watchCustomValue(
    ref,
    'favorite_parameters',
    defaultValue: [],
    adapter: IntListAdapter.instance,
  ),
);