Untitled

 avatar
unknown
plain_text
2 years ago
1.8 kB
10
Indexable
class DemoData {

  Map<String, Map<String, dynamic>> june = {
    "Tesvikiye": {
      "shopName": "Tesvikiye",
      "shopRevenue": 60,
      "shopSold": 3,
      "bestSeller": "Big Squeeze Metal Tüp Sıkma Aleti Turuncu"
    }, //60 = 60.000 Turkish Liras.
    //  3 = 3.000 Products
    "Fenerbahce": {
      "shopName": "Fenerbahce",
      "shopRevenue": 75,
      "shopSold": 3.5,
      "bestSeller": "Big Squeeze Metal Tüp Sıkma Aleti Mavi"
    },
    "Kozyatagi": {
      "shopName": "Kozyatagi",
      "shopRevenue": 90,
      "shopSold": 4.2,
      "bestSeller": "Big Squeeze Metal Tüp Sıkma Aleti Gümüş"
    },
  };

  Map<String, Map<String, dynamic>> july = {
    "Tesvikiye": {
      "shopName": "Tesvikiye",
      "shopRevenue": 30,
      "shopSold": 2.3,
      "bestSeller": "ColorBox Yağlı Boya Başlangıç Seti 1"
    },
    "Fenerbahce": {
      "shopName": "Fenerbahce",
      "shopRevenue": 25,
      "shopSold": 1.5,
      "bestSeller": "ColorBox Yağlı Boya Başlangıç Seti 2"
    },
    "Kozyatagi": {
      "shopName": "Kozyatagi",
      "shopRevenue": 27,
      "shopSold": 1.7,
      "bestSeller": "ColorBox Yağlı Boya Başlangıç Seti 3"
    },
  };

  Map<String, Map<String, dynamic>> august = {
    "Tesvikiye": {
      "shopName": "Tesvikiye",
      "shopRevenue": 60,
      "shopSold": 3,
      "bestSeller": "Tombow Uluslararası Workshop Set - L"
    },
    "Fenerbahce": {
      "shopName": "Fenerbahce",
      "shopRevenue": 75,
      "shopSold": 3.5,
      "bestSeller": "Tombow Uluslararası Workshop Set - M"
    },
    "Kozyatagi": {
      "shopName": "Kozyatagi",
      "shopRevenue": 90,
      "shopSold": 4.2,
      "bestSeller": "Tombow Uluslararası Workshop Set - S"
    },
  };
}
Editor is loading...