community_pageview_idx_data.dart 346 B

1234567891011121314151617
  1. class CommunityPageViewIdxData {
  2. static const int news = 0;
  3. static const int following = 1;
  4. static const int forYou = 2;
  5. static const int forSale = 3;
  6. static const int forRent = 4;
  7. static Map<int, String> get values => {
  8. 0: "news",
  9. 1: "following",
  10. 2: "forYou",
  11. 3: "forSale",
  12. 4: "forRent",
  13. };
  14. }