quantum apps
quantum apps

Reputation: 938

alternative for enums in flutter

in Android, the first thing you learn is to not use enums but use the @StringDef and @IntDef. But what is the alternative in Flutter for an enum?.

is there a way to create your stringdef version in Dart?

Upvotes: 0

Views: 617

Answers (1)

Rémi Rousselet
Rémi Rousselet

Reputation: 277717

Enums are totally fine to use in Dart. You don't need an equivalent to StringDef.

Upvotes: 2

Related Questions