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