Do you use Enums instead of hard coded strings?
Updated by TiagoAraujo 7 years ago. See history
123
Use Enums instead of hard-coded strings, it makes your code lot cleaner and is really easy to manage .

❌ Figure: Bad example - "Hard- coded string" works, but is a bad idea

✅ Figure: Good example - Used Enums, looks good and is easy to manage