1234567891011121314151617 |
- class CommunityPageViewIdxData {
- static const int news = 0;
- static const int following = 1;
- static const int forYou = 2;
- static const int forSale = 3;
- static const int forRent = 4;
- static Map<int, String> get values => {
- 0: "news",
- 1: "following",
- 2: "forYou",
- 3: "forSale",
- 4: "forRent",
- };
- }
|