import 'package:testapp/models/category_model.dart'; class Config{ static final List categories = [ CatgoryModel('Sport',1), CatgoryModel('National', 5), CatgoryModel('International', 4), CatgoryModel('Entertainment', 5), ]; //// DataType/Class/Model // static final List news = [ // 'ABABA', // '12345', // 'dddd', // ]; // static List articles = [ // ArticleModel( // 1, // 'assets/images/sport.png', // 'Ronaldo scored 22 goals in Serie A against Top Scorer', // '26th,June,2020', // // ), // ArticleModel( // 2, // 'assets/images/inter.png', // 'GE2020: Candidates introduced will ‘elicit responses’, ', // '26th,June,2020', // // ), // ArticleModel( // 3, // 'assets/images/news.png', // 'Scientists just beginning to understand the many health problems caused by COVID-19', // '26th,June,2020', // // ), // ArticleModel( // 4, // 'assets/images/entertainment.png', // 'It is clear that Rabbi has a very nice thigh, a man seen in the men,', // '26th,June,2020', // // ), // ]; }