hellobody
hellobody

Reputation: 530

Dart: How to cast enum to int?

How to cast enum value to integer value in Dart?

enum ETabs { eTabRed, eTabGreen, eTabBlue }

int tabIndex = 0;

tabIndex = ETabs.eTabRed; // ERROR!

Upvotes: 8

Views: 3987

Answers (1)

hellobody
hellobody

Reputation: 530

tabIndex = ETabs.eTabRed.index;

Upvotes: 11

Related Questions