dangerZoneActionProvider top-level property
final
Random action string from t.profile.dangerZone.actions for the easter egg button.
Invalidate to pick a new action.
Implementation
final dangerZoneActionProvider = Provider.autoDispose<String>((ref) {
final actions = t.profile.dangerZone.actions;
return actions[Random().nextInt(actions.length)];
});