enableDevOptionsGestureFlag top-level property
final
Provider for feature flag that enables the Developer options long-press gesture on the Profile page.
Implementation
final enableDevOptionsGestureFlag = Provider<bool>(
(ref) {
// Always enable developer options, even in prod
return true;
},
);