emailDealerTileEnabledFlag top-level property

StateNotifierProvider<PreferenceNotifier<bool>, bool> emailDealerTileEnabledFlag
final

Provider for whether the 'Email Dealer' tile in the 'Contact Us' secton of the dashboard page should be displayed

This value is backed by a shared preference and will persist after the app closes. Defaults to false.

Implementation

final emailDealerTileEnabledFlag =
    StateNotifierProvider<PreferenceNotifier<bool>, bool>(
  (ref) => PreferenceNotifier.watchBool(
    ref,
    'emailDealerTileEnabled',
    defaultValue: false,
  ),
);