anonymizationWhitelistTexts constant

List<String> const anonymizationWhitelistTexts

Default whitelist of common UI texts that should NOT be anonymized

Implementation

static const List<String> anonymizationWhitelistTexts = [
  // Essential UI buttons only
  'ok', 'cancel', 'yes', 'no', 'back', 'login', 'logout',
  'home', 'settings', 'menu', 'close', 'save',
  // Essential auth labels only
  'email', 'password', 'sign in', 'username',
  // Essential navigation only
  'dashboard', 'account', 'transactions',
];